HomeSort by relevance Sort by last modified time
    Searched refs:eqRGB (Results 1 - 10 of 10) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 150 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB;
168 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
178 cc->cc6.blend_function = brw_translate_blend_equation(eqRGB);
187 eqA != eqRGB);
gen6_cc.c 98 GLenum eqRGB = ctx->Color.Blend[b].EquationRGB;
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/
es2fBlendTests.cpp 434 const EnumGL& eqRGB = blendEquations[equationRGBNdx];
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/
es3fBlendTests.cpp 499 const EnumGL& eqRGB = blendEquations[equationRGBNdx];
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/mesa/drivers/dri/i915/
i915_state.c 296 GLuint eqRGB = ctx->Color.Blend[0].EquationRGB;
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)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 239 unsigned eqRGB = state->rt[0].rgb_func;
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/i915/
i915_state.c 106 unsigned eqRGB = blend->rt[0].rgb_func;
120 eqA != eqRGB) {
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state.c 749 unsigned eqRGB = state->rt[j].rgb_func;
761 bc |= S_028804_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
765 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]
evergreen_state.c 732 unsigned eqRGB = state->rt[j].rgb_func;
744 blend_cntl[i] |= S_028780_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
748 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 161 unsigned eqRGB = state->rt[j].rgb_func;
179 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
183 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]

Completed in 1004 milliseconds