4 # Test RGB to HSV conversion: Use a RPF -> HST -> WPF pipeline with a fixed
5 # ARGB32 format on the input and capture output frames in all HSV formats
6 # supported by the WPF.
8 # Test HSV to HSV pass-through: Use a RPF -> WPF pipeline with identical HSV
9 # formats on the input and output.
14 features="rpf.0 hst wpf.0"
20 test_start "RGB to $format conversion"
22 pipe_configure rpf-hst
23 format_configure rpf-hst ARGB32 1024x768 $format
28 result=$(compare_frames)
36 test_start "HSV pass-through in $format"
38 pipe_configure rpf-wpf 0 0
39 format_configure rpf-wpf 0 0 $format 1024x768 $format
44 result=$(compare_frames)
50 for format in $formats ; do
51 test_rgb_to_hsv $format
52 test_hsv_to_hsv $format
56 test_init $0 "$features"