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

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 151 GLenum eqA = ctx->Color.Blend[0].EquationA;
172 if (eqA == GL_MIN || eqA == GL_MAX) {
182 cc->cc5.ia_blend_function = brw_translate_blend_equation(eqA);
187 eqA != eqRGB);
gen6_cc.c 99 GLenum eqA = ctx->Color.Blend[b].EquationA;
109 if (eqA == GL_MIN || eqA == GL_MAX) {
119 blend[b].blend0.ia_blend_func = brw_translate_blend_equation(eqA);
124 eqA != eqRGB);
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 297 GLuint eqA = ctx->Color.Blend[0].EquationA;
307 if (eqA == GL_MIN || eqA == GL_MAX) {
317 iab |= translate_blend_equation(eqA) << IAB_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 243 unsigned eqA = state->rt[0].alpha_func;
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) {
325 (eqA == PIPE_BLEND_ADD || eqA == PIPE_BLEND_REVERSE_SUBTRACT)) {
360 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
367 r300_translate_blend_function(eqA, TRUE);
369 r300_translate_blend_function(eqA, FALSE)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 110 unsigned eqA = blend->rt[0].alpha_func;
120 eqA != eqRGB) {
130 (i915_translate_blend_func(eqA) << IAB_FUNC_SHIFT));
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state.c 753 unsigned eqA = state->rt[j].alpha_func;
765 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
767 bc |= S_028804_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
    [all...]
evergreen_state.c 735 unsigned eqA = state->rt[j].alpha_func;
748 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
750 blend_cntl[i] |= S_028780_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 164 unsigned eqA = state->rt[j].alpha_func;
183 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
185 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
    [all...]

Completed in 304 milliseconds