Home
last modified time | relevance | path

Searched refs:rgb8 (Results 1 – 25 of 146) sorted by relevance

123456

/third_party/ffmpeg/tests/ref/lavf/
Drgb8.xwd1 c6f3cb7c45f7238474a89d2ad61a1caf *tests/data/images/rgb8.xwd/02.rgb8.xwd
2 tests/data/images/rgb8.xwd/%02d.rgb8.xwd CRC=0xf217a95e
3 104559 tests/data/images/rgb8.xwd/02.rgb8.xwd
/third_party/boost/libs/gil/test/legacy/
Dpixel.cpp280 rgb8_pixel_t rgb8(1,2,3); in test_pixel() local
282 do_basic_test<value_core<rgb8_pixel_t,0>, reference_core<rgb8_pixel_t&,1> >(rgb8).test_all(); in test_pixel()
283 … do_basic_test<value_core<bgr8_pixel_t,0>, reference_core<rgb8_planar_ref_t,1> >(rgb8).test_all(); in test_pixel()
284 …do_basic_test<reference_core<rgb8_planar_ref_t,0>, reference_core<bgr8_pixel_t&,1> >(rgb8).test_al… in test_pixel()
285 …do_basic_test<reference_core<const rgb8_pixel_t&,0>, reference_core<rgb8_pixel_t&,1> >(rgb8).test_… in test_pixel()
290 bgr8_pixel_t bgr8(rgb8); in test_pixel()
291 error_if(bgr8[0] == rgb8[0]); in test_pixel()
292 error_if(dynamic_at_c(bgr8,0) == dynamic_at_c(rgb8,0)); in test_pixel()
293 error_if(gil::at_c<0>(bgr8) == gil::at_c<0>(rgb8)); in test_pixel()
294 error_if(semantic_at_c<0>(bgr8) != semantic_at_c<0>(rgb8)); in test_pixel()
[all …]
Dimage.cpp553 rgb8_image_t rgb8(100,100); in static_checks() local
554 unsigned char* data=interleaved_view_get_raw_data(view(rgb8)); in static_checks()
555 const unsigned char* cdata=interleaved_view_get_raw_data(const_view(rgb8)); in static_checks()
560 rgb16s_planar_image_t rgb8(100,100); in static_checks() local
561 short* data=planar_view_get_raw_data(view(rgb8),1); in static_checks()
562 const short* cdata=planar_view_get_raw_data(const_view(rgb8),1); in static_checks()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_debug_image.c57 unsigned char *rgb8; in debug_dump_image() local
62 rgb8 = MALLOC(height * width * 3); in debug_dump_image()
63 if (!rgb8) { in debug_dump_image()
69 rgb8, width * 3, in debug_dump_image()
84 fwrite(rgb8, 1, height * width * 3, f); in debug_dump_image()
91 FREE(rgb8); in debug_dump_image()
/third_party/boost/libs/gil/doc/html/_sources/design/
Dpixel.rst.txt149 rgb8_pixel_t rgb8(bgr8); // compatible pixels can also be copy-constructed
151 rgb8 = bgr8; // assignment and equality is defined between compatible pixels
152 assert(rgb8 == bgr8); // assignment and equality operate on the semantic channels
155 assert(at_c<0>(rgb8) != at_c<0>(bgr8));
156 assert(dynamic_at_c(bgr8,0) != dynamic_at_c(rgb8,0));
157 assert(rgb8[0] != bgr8[0]); // same as above (but operator[] is defined for pixels only)
246 assert(semantic_at_c<0>(rgb8) == semantic_at_c<0>(bgr8));
249 assert(get_color<red_t>(rgb8) == get_color<red_t>(bgr8));
252 assert(get_color(rgb8,red_t()) == get_color(bgr8,red_t()));
/third_party/boost/libs/gil/doc/design/
Dpixel.rst149 rgb8_pixel_t rgb8(bgr8); // compatible pixels can also be copy-constructed
151 rgb8 = bgr8; // assignment and equality is defined between compatible pixels
152 assert(rgb8 == bgr8); // assignment and equality operate on the semantic channels
155 assert(at_c<0>(rgb8) != at_c<0>(bgr8));
156 assert(dynamic_at_c(bgr8,0) != dynamic_at_c(rgb8,0));
157 assert(rgb8[0] != bgr8[0]); // same as above (but operator[] is defined for pixels only)
246 assert(semantic_at_c<0>(rgb8) == semantic_at_c<0>(bgr8));
249 assert(get_color<red_t>(rgb8) == get_color<red_t>(bgr8));
252 assert(get_color(rgb8,red_t()) == get_color(bgr8,red_t()));
/third_party/ffmpeg/tests/ref/fate/
Dsws-pixdesc-query439 rgb8
479 rgb8
587 rgb8
694 rgb8
862 rgb8
898 rgb8
Dfilter-pixdesc-rgb81 pixdesc-rgb8 2ce87991241972bea465f41e4d82d27a
Dfilter-pixfmts-transpose75 rgb8 c90feb30c3c9391ef5f470209d7b7a15
Dfilter-pixfmts-fieldorder69 rgb8 6deae05ccac5c50bd0d9c9fe8e124557
Dfilter-pixfmts-crop76 rgb8 9b364a8f112ad9459fec47a51cc03b30
Dfilter-pixfmts-hflip76 rgb8 68a3a575badadd9e4f90226209f11699
Dfilter-pixfmts-copy78 rgb8 7ac6008c84d622c2fc50581706e17576
Dfilter-pixfmts-null78 rgb8 7ac6008c84d622c2fc50581706e17576
Dfilter-pixfmts-field78 rgb8 62c3b9e2a171de3d894a8eeb271c85e8
Dfilter-pixfmts-scale78 rgb8 bcdc033b4ef0979d060dbc8893d4db58
Dfilter-pixfmts-vflip78 rgb8 7df049b6094f8a5e084d74462f6d6cde
Dfilter-pixfmts-il77 rgb8 93f9fa5ecf522abe13ed34f21831fdfe
/third_party/ffmpeg/tests/fate/
Dlavf-image.mak30 FATE_LAVF_IMAGES-$(call ENCDEC, XWD, IMAGE2) += rgb8.xwd
58 fate-lavf-rgb8.xwd: CMD = lavf_image "-pix_fmt rgb8"
Dgif.mak21 FATE_GIF_ENC_PIXFMT = rgb8 bgr8 rgb4_byte bgr4_byte gray pal8
/third_party/boost/libs/gil/doc/html/_sources/
Dio.rst.txt433 :Read: gray1, gray2, gray4, gray8, gray16, gray_alpha_8, gray_alpha_16, rgb8, rgb16, rgba8, rgba16
434 :Write: gray1, gray2, gray4, gray8, gray16, gray_alpha_8, gray_alpha_16, rgb8, rgb16, rgba8, rgba16
450 :Read: gray1, gray8, rgb8
451 :Write: gray1, gray8, rgb8
460 Currently the extension is only able to read rgb8 images.
/third_party/boost/libs/gil/doc/
Dio.rst433 :Read: gray1, gray2, gray4, gray8, gray16, gray_alpha_8, gray_alpha_16, rgb8, rgb16, rgba8, rgba16
434 :Write: gray1, gray2, gray4, gray8, gray16, gray_alpha_8, gray_alpha_16, rgb8, rgb16, rgba8, rgba16
450 :Read: gray1, gray8, rgb8
451 :Write: gray1, gray8, rgb8
460 Currently the extension is only able to read rgb8 images.
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.0.x/
Dgl32-master.txt234 KHR-GL32.packed_pixels.rectangle.rgb8
317 KHR-GL32.packed_pixels.pbo_rectangle.rgb8
400 KHR-GL32.packed_pixels.varied_rectangle.rgb8
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gl/khronos_mustpass/4.6.0.x/src/
Dgl32-master.txt234 KHR-GL32.packed_pixels.rectangle.rgb8
317 KHR-GL32.packed_pixels.pbo_rectangle.rgb8
400 KHR-GL32.packed_pixels.varied_rectangle.rgb8
/third_party/vk-gl-cts/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.5.x/
Dgles31-khr-master.txt2359 KHR-GLES31.core.internalformat.copy_tex_image.rgb8
2364 KHR-GLES31.core.internalformat.renderbuffer.rgb8
2840 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.0_0
2841 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.1_0
2842 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.16_0
2843 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.1_1
2844 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.16_1
2845 KHR-GLES31.core.pixelstoragemodes.teximage2d.rgb8.16_16
3196 KHR-GLES31.core.pixelstoragemodes.teximage3d.rgb8.0_0_0
3197 KHR-GLES31.core.pixelstoragemodes.teximage3d.rgb8.1_0_0
[all …]

123456