Home
last modified time | relevance | path

Searched refs:ycc_to_rgb (Results 1 – 25 of 26) sorted by relevance

12

/dports/emulators/mess/mame-mame0226/src/osd/modules/render/
H A Dcopyutil.h76 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
133 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
135 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
149 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
151 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
H A Dblit13.h26 inline uint32_t ycc_to_rgb(const uint8_t y, const uint8_t cb, const uint8_t cr) in ycc_to_rgb() function
39 return ycc_to_rgb((*pixel >> 8) & 0xff, (p) & 0xff, (p>>16) & 0xff); in pixel_ycc_to_rgb()
45 return ycc_to_rgb(palette[(*pixel >> 8) & 0xff], (p) & 0xff, (p>>16) & 0xff); in pixel_ycc_to_rgb_pal()
107 return (uint64_t) ycc_to_rgb((src >> 8) & 0xff, src & 0xff , (src>>16) & 0xff)
108 | ((uint64_t)ycc_to_rgb((src >> 24) & 0xff, src & 0xff , (src>>16) & 0xff) << 32); )
111 return (uint64_t)ycc_to_rgb(palbase[(src >> 8) & 0xff], src & 0xff , (src>>16) & 0xff)
112 | ((uint64_t)ycc_to_rgb(palbase[(src >> 24) & 0xff], src & 0xff , (src>>16) & 0xff) << 32);)
H A Ddrawogl.cpp2210 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
2271 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2272 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2293 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2294 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2307 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2308 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2316 uint32_t dstval0 = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2317 uint32_t dstval1 = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
2329 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
[all …]
H A Ddrawd3d.cpp75 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
2332 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2333 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2344 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2345 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
/dports/emulators/mame/mame-mame0226/src/osd/modules/render/
H A Dcopyutil.h76 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
133 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
135 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
149 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
151 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
H A Dblit13.h26 inline uint32_t ycc_to_rgb(const uint8_t y, const uint8_t cb, const uint8_t cr) in ycc_to_rgb() function
39 return ycc_to_rgb((*pixel >> 8) & 0xff, (p) & 0xff, (p>>16) & 0xff); in pixel_ycc_to_rgb()
45 return ycc_to_rgb(palette[(*pixel >> 8) & 0xff], (p) & 0xff, (p>>16) & 0xff); in pixel_ycc_to_rgb_pal()
107 return (uint64_t) ycc_to_rgb((src >> 8) & 0xff, src & 0xff , (src>>16) & 0xff)
108 | ((uint64_t)ycc_to_rgb((src >> 24) & 0xff, src & 0xff , (src>>16) & 0xff) << 32); )
111 return (uint64_t)ycc_to_rgb(palbase[(src >> 8) & 0xff], src & 0xff , (src>>16) & 0xff)
112 | ((uint64_t)ycc_to_rgb(palbase[(src >> 24) & 0xff], src & 0xff , (src>>16) & 0xff) << 32);)
H A Ddrawogl.cpp2210 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
2271 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2272 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2293 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2294 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2307 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2308 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2316 uint32_t dstval0 = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2317 uint32_t dstval1 = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
2329 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
[all …]
H A Ddrawd3d.cpp75 static inline uint32_t ycc_to_rgb(uint8_t y, uint8_t cb, uint8_t cr) in ycc_to_rgb() function
2332 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix0 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2333 *dst++ = ycc_to_rgb(palette[0x000 + (srcpix1 >> 8)], cb, cr); in copyline_yuy16_to_argb()
2344 *dst++ = ycc_to_rgb(srcpix0 >> 8, cb, cr); in copyline_yuy16_to_argb()
2345 *dst++ = ycc_to_rgb(srcpix1 >> 8, cb, cr); in copyline_yuy16_to_argb()
/dports/emulators/mess/mame-mame0226/src/osd/modules/render/bgfx/shaders/chains/misc/
H A Dfs_blit_yuy16.sc16 vec3 ycc_to_rgb(float y, float cb, float cr)
36 gl_FragColor = vec4(ycc_to_rgb(srcpix0.g, cb, cr), 1.0) * v_color0;
38 gl_FragColor = vec4(ycc_to_rgb(srcpix1.g, cb, cr), 1.0) * v_color0;
/dports/emulators/mame/mame-mame0226/src/osd/modules/render/bgfx/shaders/chains/misc/
H A Dfs_blit_yuy16.sc16 vec3 ycc_to_rgb(float y, float cb, float cr)
36 gl_FragColor = vec4(ycc_to_rgb(srcpix0.g, cb, cr), 1.0) * v_color0;
38 gl_FragColor = vec4(ycc_to_rgb(srcpix1.g, cb, cr), 1.0) * v_color0;
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/tests/
H A DBLI_math_color_test.cc40 ycc_to_rgb(ycc[0], ycc[1], ycc[2], &rgb[0], &rgb[1], &rgb[2], BLI_YCC_ITU_BT601); in TEST()
44 ycc_to_rgb(ycc[0], ycc[1], ycc[2], &rgb[0], &rgb[1], &rgb[2], BLI_YCC_ITU_BT709); in TEST()
48 ycc_to_rgb(ycc[0], ycc[1], ycc[2], &rgb[0], &rgb[1], &rgb[2], BLI_YCC_JFIF_0_255); in TEST()
/dports/graphics/vips/vips-8.12.0/libvips/foreign/
H A Djp2kload.c96 gboolean ycc_to_rgb; member
392 jp2k->ycc_to_rgb = TRUE; in vips_foreign_load_jp2k_set_header()
433 jp2k->ycc_to_rgb = TRUE; in vips_foreign_load_jp2k_set_header()
789 if( jp2k->ycc_to_rgb ) in vips_foreign_load_jp2k_generate_untiled()
894 if( jp2k->ycc_to_rgb ) in vips_foreign_load_jp2k_generate_tiled()
1277 int width, int height, gboolean ycc_to_rgb, in vips__foreign_load_jp2k_decompress() argument
1294 width, height, ycc_to_rgb, from_length, to_length ); in vips__foreign_load_jp2k_decompress()
1299 ycc_to_rgb = ycc_to_rgb && out->Bands == 3; in vips__foreign_load_jp2k_decompress()
1350 if( ycc_to_rgb ) in vips__foreign_load_jp2k_decompress()
1367 int width, int height, gboolean ycc_to_rgb, in vips__foreign_load_jp2k_decompress() argument
H A Dpforeign.h240 int width, int height, gboolean ycc_to_rgb,
H A Djxlload.c114 gboolean ycc_to_rgb; member
/dports/graphics/libfpx/libfpx-1.3.1-10/fpx/
H A Dcoltwist.h46 ycc_to_rgb, // Normalized PhotoYCC to normalized PhotoRGB enumerator
H A Dcoltwist.cpp173 case ycc_to_rgb: // Normalized PhotoYCC to normalized PhotoRGB in PColorTwist()
H A Dptil_fpx.cpp1136 PColorTwist ycctorgb (ycc_to_rgb); in Read()
H A Dbuffdesc.cpp158 PColorTwist tyccTorgb(ycc_to_rgb); // Normalized PhotoYCC to normalized PhotoRGB in ConvertYCCtoRGB()
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/
H A DBLI_math_color.h52 void ycc_to_rgb(float y, float cb, float cr, float *r_r, float *r_g, float *r_b, int colorspace);
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_ConvertOperation.cpp242 ycc_to_rgb(inputColor[0], in executePixelSampled()
/dports/emulators/mess/mame-mame0226/src/emu/
H A Drendersw.hxx75 static inline u32 ycc_to_rgb(u32 ycc) in ycc_to_rgb() function in software_renderer
814 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
844 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
880 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
920 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_add()
959 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_add()
/dports/emulators/mame/mame-mame0226/src/emu/
H A Drendersw.hxx75 static inline u32 ycc_to_rgb(u32 ycc) in ycc_to_rgb() function in software_renderer
814 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
844 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
880 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_none()
920 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_add()
959 const u32 pix = ycc_to_rgb(get_texel_yuy16(prim.texture, curu, curv)); in draw_quad_yuy16_add()
/dports/emulators/mess/mame-mame0226/src/mame/drivers/
H A Dcxhumax.cpp847 static inline uint32_t ycc_to_rgb(uint32_t ycc) in ycc_to_rgb() function
936 bmp[i] = ycc_to_rgb(m_drm1_regs[DRM_BCKGND_REG]); in screen_update_cxhumax()
/dports/emulators/mame/mame-mame0226/src/mame/drivers/
H A Dcxhumax.cpp847 static inline uint32_t ycc_to_rgb(uint32_t ycc) in ycc_to_rgb() function
936 bmp[i] = ycc_to_rgb(m_drm1_regs[DRM_BCKGND_REG]); in screen_update_cxhumax()
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/intern/
H A Dmath_color.c170 void ycc_to_rgb(float y, float cb, float cr, float *r_r, float *r_g, float *r_b, int colorspace) in ycc_to_rgb() function

12