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

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen8_blend_state.c 107 GLenum eqA = ctx->Color.Blend[i].EquationA;
116 if (eqA == GL_MIN || eqA == GL_MAX)
140 SET_FIELD(blend_eqn(eqA), GEN8_BLEND_ALPHA_BLEND_FUNCTION);
142 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
245 GLenum eqA = ctx->Color.Blend[0].EquationA;
254 if (eqA == GL_MIN || eqA == GL_MAX)
278 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
gen6_cc.c 110 GLenum eqA = ctx->Color.Blend[b].EquationA;
120 if (eqA == GL_MIN || eqA == GL_MAX) {
145 blend[b].blend0.ia_blend_func = brw_translate_blend_equation(eqA);
150 eqA != eqRGB);
brw_cc.c 168 GLenum eqA = ctx->Color.Blend[0].EquationA;
189 if (eqA == GL_MIN || eqA == GL_MAX) {
199 cc->cc5.ia_blend_function = brw_translate_blend_equation(eqA);
204 eqA != eqRGB);
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 173 static unsigned blend_discard_conditionally(unsigned eqRGB, unsigned eqA,
190 (eqA == PIPE_BLEND_ADD || eqA == PIPE_BLEND_REVERSE_SUBTRACT)) {
272 static unsigned blend_read_enable(unsigned eqRGB, unsigned eqA,
284 if (eqRGB == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MIN ||
285 eqRGB == PIPE_BLEND_MAX || eqA == PIPE_BLEND_MAX ||
303 if (eqRGB != PIPE_BLEND_MIN && eqA != PIPE_BLEND_MIN &&
304 eqRGB != PIPE_BLEND_MAX && eqA != PIPE_BLEND_MAX) {
360 const unsigned eqA = state->rt[0].alpha_func;
414 blend_control |= blend_read_enable(eqRGB, eqA, dstRGB, dstA
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 299 GLuint eqA = ctx->Color.Blend[0].EquationA;
309 if (eqA == GL_MIN || eqA == GL_MAX) {
319 iab |= translate_blend_equation(eqA) << IAB_FUNC_SHIFT;
321 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
347 i915BlendEquationSeparate(struct gl_context * ctx, GLenum eqRGB, GLenum eqA)
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 111 unsigned eqA = blend->rt[0].alpha_func;
121 eqA != eqRGB) {
131 (i915_translate_blend_func(eqA) << IAB_FUNC_SHIFT));
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_pipeline.c 844 VkBlendOp eqA = att->alphaBlendOp;
867 if (eqA == VK_BLEND_OP_MIN || eqA == VK_BLEND_OP_MAX) {
877 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
879 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 444 unsigned eqA = state->rt[j].alpha_func;
470 eqA == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MAX)) {
493 si_blend_remove_dst(&eqA, &srcA, &dstA,
496 si_blend_remove_dst(&eqA, &srcA, &dstA,
525 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
533 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
535 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_state.c 366 unsigned eqA = state->rt[j].alpha_func;
383 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
385 bc |= S_028780_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
    [all...]
r600_state.c 292 unsigned eqA = state->rt[j].alpha_func;
304 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
306 bc |= S_028804_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
    [all...]

Completed in 1561 milliseconds