Searched defs:dst_rgb (Results 1 - 10 of 10) sorted by relevance

/external/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
H A DesextcDrawBuffersIndexedBase.cpp256 glw::GLenum dst_rgb, glw::GLenum src_a,
259 gl.blendFuncSeparatei(idx, src_rgb, dst_rgb, src_a, dst_a);
262 state[idx].func_dst_rgb = dst_rgb;
335 void DrawBuffersIndexedBase::BlendMaskStateMachine::SetBlendFuncSeparate(glw::GLenum src_rgb, glw::GLenum dst_rgb, argument
339 gl.blendFuncSeparate(src_rgb, dst_rgb, src_a, dst_a);
344 state[i].func_dst_rgb = dst_rgb;
255 SetBlendFuncSeparatei(int idx, glw::GLenum src_rgb, glw::GLenum dst_rgb, glw::GLenum src_a, glw::GLenum dst_a) argument
/external/mesa3d/src/compiler/glsl/
H A Dlower_blend_equation_advanced.cpp305 ir_variable *dst_rgb = f.make_temp(glsl_type::vec3_type, "__blend_dst_rgb"); local
310 assign(dst_rgb, imm3(0)),
311 assign(dst_rgb, csel(equal(swizzle_xyz(fb),
341 val = blend_multiply(src_rgb, dst_rgb);
344 val = blend_screen(src_rgb, dst_rgb);
347 val = blend_overlay(src_rgb, dst_rgb);
350 val = blend_darken(src_rgb, dst_rgb);
353 val = blend_lighten(src_rgb, dst_rgb);
356 val = blend_colordodge(src_rgb, dst_rgb);
359 val = blend_colorburn(src_rgb, dst_rgb);
[all...]
/external/mesa3d/src/intel/blorp/
H A Dblorp_priv.h269 bool dst_rgb; member in struct:brw_blorp_blit_prog_key
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_neon.cc1213 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, argument
1228 : "+r"(dst_rgb) // %0
H A Drow_neon64.cc1219 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, argument
1234 : "+r"(dst_rgb) // %0
H A Drow_common.cc166 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
172 dst_rgb[0] = b;
173 dst_rgb[1] = g;
174 dst_rgb[2] = r;
175 dst_rgb += 3;
180 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
186 dst_rgb[0] = r;
187 dst_rgb[1] = g;
188 dst_rgb[2] = b;
189 dst_rgb
194 ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
224 ARGBToRGB565DitherRow_C(const uint8* src_argb, uint8* dst_rgb, const uint32 dither4, int width) argument
250 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
277 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
/external/libyuv/files/source/
H A Drow_neon.cc1193 uint8* dst_rgb,
1209 : "+r"(dst_rgb) // %0
1192 ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, const uint32 dither4, int width) argument
H A Drow_neon64.cc1206 uint8* dst_rgb,
1222 : "+r"(dst_rgb) // %0
1205 ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, const uint32 dither4, int width) argument
H A Drow_common.cc168 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
174 dst_rgb[0] = b;
175 dst_rgb[1] = g;
176 dst_rgb[2] = r;
177 dst_rgb += 3;
182 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
188 dst_rgb[0] = r;
189 dst_rgb[1] = g;
190 dst_rgb[2] = b;
191 dst_rgb
196 ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
226 ARGBToRGB565DitherRow_C(const uint8* src_argb, uint8* dst_rgb, const uint32 dither4, int width) argument
254 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
279 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
H A Drow_msa.cc935 void ARGBToRGB24Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { argument
952 ST_UB2(dst0, dst1, dst_rgb, 16);
953 ST_UB(dst2, (dst_rgb + 32));
955 dst_rgb += 48;
959 void ARGBToRAWRow_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { argument
976 ST_UB2(dst0, dst1, dst_rgb, 16);
977 ST_UB(dst2, (dst_rgb + 32));
979 dst_rgb += 48;
983 void ARGBToRGB565Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { argument
1011 ST_UB(dst0, dst_rgb);
1017 ARGBToARGB1555Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) argument
1057 ARGBToARGB4444Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) argument
1298 ARGBToRGB565DitherRow_MSA(const uint8* src_argb, uint8* dst_rgb, uint32 dither4, int width) argument
[all...]

Completed in 268 milliseconds