/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_state.c | 58 static boolean blend_discard_if_src_alpha_0(unsigned srcRGB, unsigned srcA, 65 return (srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA || 66 srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE || 67 srcRGB == PIPE_BLENDFACTOR_ZERO) && 79 static boolean blend_discard_if_src_alpha_1(unsigned srcRGB, unsigned srcA, 86 return (srcRGB == PIPE_BLENDFACTOR_INV_SRC_ALPHA || 87 srcRGB == PIPE_BLENDFACTOR_ZERO) && 98 static boolean blend_discard_if_src_color_0(unsigned srcRGB, unsigned srcA, 105 return (srcRGB == PIPE_BLENDFACTOR_SRC_COLOR || 106 srcRGB == PIPE_BLENDFACTOR_ZERO) & [all...] |
/external/mesa3d/src/gallium/drivers/r300/ |
r300_state.c | 58 static boolean blend_discard_if_src_alpha_0(unsigned srcRGB, unsigned srcA, 65 return (srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA || 66 srcRGB == PIPE_BLENDFACTOR_SRC_ALPHA_SATURATE || 67 srcRGB == PIPE_BLENDFACTOR_ZERO) && 79 static boolean blend_discard_if_src_alpha_1(unsigned srcRGB, unsigned srcA, 86 return (srcRGB == PIPE_BLENDFACTOR_INV_SRC_ALPHA || 87 srcRGB == PIPE_BLENDFACTOR_ZERO) && 98 static boolean blend_discard_if_src_color_0(unsigned srcRGB, unsigned srcA, 105 return (srcRGB == PIPE_BLENDFACTOR_SRC_COLOR || 106 srcRGB == PIPE_BLENDFACTOR_ZERO) & [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_cc.c | 152 GLenum srcRGB = ctx->Color.Blend[0].SrcRGB; 162 srcRGB = fix_xRGB_alpha(srcRGB); 169 srcRGB = dstRGB = GL_ONE; 177 cc->cc6.src_blend_factor = brw_translate_blend_factor(srcRGB); 185 cc->cc3.ia_blend_enable = (srcA != srcRGB ||
|
gen6_cc.c | 100 GLenum srcRGB = ctx->Color.Blend[b].SrcRGB; 106 srcRGB = dstRGB = GL_ONE; 114 blend[b].blend0.source_blend_factor = brw_translate_blend_factor(srcRGB); 122 blend[b].blend0.ia_blend_enable = (srcA != srcRGB ||
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_cc.c | 152 GLenum srcRGB = ctx->Color.Blend[0].SrcRGB; 162 srcRGB = fix_xRGB_alpha(srcRGB); 169 srcRGB = dstRGB = GL_ONE; 177 cc->cc6.src_blend_factor = brw_translate_blend_factor(srcRGB); 185 cc->cc3.ia_blend_enable = (srcA != srcRGB ||
|
gen6_cc.c | 100 GLenum srcRGB = ctx->Color.Blend[b].SrcRGB; 106 srcRGB = dstRGB = GL_ONE; 114 blend[b].blend0.source_blend_factor = brw_translate_blend_factor(srcRGB); 122 blend[b].blend0.ia_blend_enable = (srcA != srcRGB ||
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_state_emit.c | 162 uint32_t srcRGB = (imm >> S6_CBUF_SRC_BLEND_FACT_SHIFT) & BLENDFACT_MASK; 163 if (srcRGB == BLENDFACT_DST_ALPHA) 164 srcRGB = BLENDFACT_DST_COLR; 165 else if (srcRGB == BLENDFACT_INV_DST_ALPHA) 166 srcRGB = BLENDFACT_INV_DST_COLR; 168 imm |= SRC_BLND_FACT(srcRGB);
|
i915_state.c | 107 unsigned srcRGB = blend->rt[0].rgb_src_factor; 118 if (srcA != srcRGB || 164 unsigned srcRGB = blend->rt[0].rgb_src_factor; 168 SRC_BLND_FACT(i915_translate_blend_factor(srcRGB)) | [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state_emit.c | 162 uint32_t srcRGB = (imm >> S6_CBUF_SRC_BLEND_FACT_SHIFT) & BLENDFACT_MASK; 163 if (srcRGB == BLENDFACT_DST_ALPHA) 164 srcRGB = BLENDFACT_DST_COLR; 165 else if (srcRGB == BLENDFACT_INV_DST_ALPHA) 166 srcRGB = BLENDFACT_INV_DST_COLR; 168 imm |= SRC_BLND_FACT(srcRGB);
|
i915_state.c | 107 unsigned srcRGB = blend->rt[0].rgb_src_factor; 118 if (srcA != srcRGB || 164 unsigned srcRGB = blend->rt[0].rgb_src_factor; 168 SRC_BLND_FACT(i915_translate_blend_factor(srcRGB)) | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_blend.c | 80 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ZERO); 106 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE); 130 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 175 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 213 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 253 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE); 503 switch (ctx->Color.Blend[0].SrcRGB) { 907 const GLenum srcRGB = ctx->Color.Blend[0].SrcRGB; 935 else if (srcRGB != srcA || dstRGB != dstA) [all...] |
s_texcombine.c | 149 const GLenum srcRGB = combine->SourceRGB[term]; 152 switch (srcRGB) { 198 const GLuint srcUnit = srcRGB - GL_TEXTURE0;
|
/external/mesa3d/src/mesa/swrast/ |
s_blend.c | 80 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ZERO); 106 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE); 130 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 175 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 213 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_SRC_ALPHA); 253 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE); 503 switch (ctx->Color.Blend[0].SrcRGB) { 907 const GLenum srcRGB = ctx->Color.Blend[0].SrcRGB; 935 else if (srcRGB != srcA || dstRGB != dstA) [all...] |
s_texcombine.c | 141 const GLenum srcRGB = combine->SourceRGB[term]; 144 switch (srcRGB) { 190 const GLuint srcUnit = srcRGB - GL_TEXTURE0;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i915_state.c | 298 GLuint srcRGB = ctx->Color.Blend[0].SrcRGB; 304 srcRGB = dstRGB = GL_ONE; 311 lis6 |= SRC_BLND_FACT(intel_translate_blend_factor(srcRGB)); 319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) 337 i915BlendFuncSeparate(struct gl_context * ctx, GLenum srcRGB, [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_state.c | 298 GLuint srcRGB = ctx->Color.Blend[0].SrcRGB; 304 srcRGB = dstRGB = GL_ONE; 311 lis6 |= SRC_BLND_FACT(intel_translate_blend_factor(srcRGB)); 319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) 337 i915BlendFuncSeparate(struct gl_context * ctx, GLenum srcRGB, [all...] |
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
GL11ExtensionPack.java | 135 int srcRGB,
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES11Ext.spec | 2 void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha )
|
GLES20.spec | 12 void glBlendFuncSeparate ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha )
|
/frameworks/base/opengl/java/android/opengl/ |
GLES11Ext.java | 151 // C function void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha ) 154 int srcRGB, [all...] |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/GLES/ |
glext.h | 248 GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 250 typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/GLES/ |
glext.h | 248 GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 250 typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/GLES/ |
glext.h | 248 GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 250 typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/GLES/ |
glext.h | 248 GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 250 typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/GLES/ |
glext.h | 248 GL_API void GL_APIENTRY glBlendFuncSeparateOES (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 250 typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEOESPROC) (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
|