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

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_cc.c150 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB; local
168 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
178 cc->cc6.blend_function = brw_translate_blend_equation(eqRGB);
187 eqA != eqRGB);
H A Dgen6_cc.c98 GLenum eqRGB = ctx->Color.Blend[b].EquationRGB; local
105 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
115 blend[b].blend0.blend_func = brw_translate_blend_equation(eqRGB);
124 eqA != eqRGB);
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.cpp434 const EnumGL& eqRGB = blendEquations[equationRGBNdx]; local
437 string name = string("") + eqRGB.nameStr + "_" + eqAlpha.nameStr;
439 "RGB equation " + getBlendEquationName(eqRGB.glValue) +
443 paramSets.push_back(BlendParams(eqRGB.glValue, GL_ONE, GL_ONE, eqAlpha.glValue, GL_ONE, GL_ONE, defaultBlendColor));
/external/deqp/modules/gles3/functional/
H A Des3fBlendTests.cpp499 const EnumGL& eqRGB = blendEquations[equationRGBNdx]; local
502 string name = string("") + eqRGB.nameStr + "_" + eqAlpha.nameStr;
504 "RGB equation " + getBlendEquationName(eqRGB.glValue) +
508 paramSets.push_back(BlendParams(eqRGB.glValue, GL_ONE, GL_ONE, eqAlpha.glValue, GL_ONE, GL_ONE, defaultBlendColor));
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state.c106 unsigned eqRGB = blend->rt[0].rgb_func; local
120 eqA != eqRGB) {
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_state.c296 GLuint eqRGB = ctx->Color.Blend[0].EquationRGB; local
303 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
313 lis6 |= translate_blend_equation(eqRGB) << S6_CBUF_BLEND_FUNC_SHIFT;
319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
345 i915BlendEquationSeparate(struct gl_context * ctx, GLenum eqRGB, GLenum eqA) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c239 unsigned eqRGB = state->rt[0].rgb_func; local
254 r300_translate_blend_function(eqRGB, TRUE);
256 r300_translate_blend_function(eqRGB, FALSE);
263 if (eqRGB == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MIN ||
264 eqRGB == PIPE_BLEND_MAX || eqA == PIPE_BLEND_MAX ||
283 if (eqRGB != PIPE_BLEND_MIN && eqA != PIPE_BLEND_MIN &&
284 eqRGB != PIPE_BLEND_MAX && eqA != PIPE_BLEND_MAX) {
324 if ((eqRGB == PIPE_BLEND_ADD || eqRGB == PIPE_BLEND_REVERSE_SUBTRACT) &&
360 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_state.c732 unsigned eqRGB = state->rt[j].rgb_func; local
744 blend_cntl[i] |= S_028780_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
748 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
H A Dr600_state.c749 unsigned eqRGB = state->rt[j].rgb_func; local
761 bc |= S_028804_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
765 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state.c161 unsigned eqRGB = state->rt[j].rgb_func; local
179 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
183 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {

Completed in 246 milliseconds