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

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen8_blend_state.c 106 GLenum eqRGB = ctx->Color.Blend[i].EquationRGB;
113 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
139 SET_FIELD(blend_eqn(eqRGB), GEN8_BLEND_COLOR_BLEND_FUNCTION) |
142 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
244 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB;
251 if (eqRGB == GL_MIN || eqRGB == GL_MAX)
278 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
gen6_cc.c 109 GLenum eqRGB = ctx->Color.Blend[b].EquationRGB;
116 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
141 blend[b].blend0.blend_func = brw_translate_blend_equation(eqRGB);
150 eqA != eqRGB);
brw_cc.c 167 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB;
185 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
195 cc->cc6.blend_function = brw_translate_blend_equation(eqRGB);
204 eqA != eqRGB);
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 173 static unsigned blend_discard_conditionally(unsigned eqRGB, unsigned eqA,
189 if ((eqRGB == PIPE_BLEND_ADD || eqRGB == 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) {
356 const unsigned eqRGB = state->rt[0].rgb_func;
405 blend_eq = r300_translate_blend_function(eqRGB, TRUE)
    [all...]
  /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 298 GLuint eqRGB = ctx->Color.Blend[0].EquationRGB;
305 if (eqRGB == GL_MIN || eqRGB == GL_MAX) {
315 lis6 |= translate_blend_equation(eqRGB) << S6_CBUF_BLEND_FUNC_SHIFT;
321 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
347 i915BlendEquationSeparate(struct gl_context * ctx, GLenum eqRGB, GLenum eqA)
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_pipeline.c 841 VkBlendOp eqRGB = att->colorBlendOp;
863 if (eqRGB == VK_BLEND_OP_MIN || eqRGB == VK_BLEND_OP_MAX) {
874 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
877 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 107 unsigned eqRGB = blend->rt[0].rgb_func;
121 eqA != eqRGB) {
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 441 unsigned eqRGB = state->rt[j].rgb_func;
469 (eqRGB == PIPE_BLEND_MIN || eqRGB == PIPE_BLEND_MAX ||
490 si_blend_remove_dst(&eqRGB, &srcRGB, &dstRGB,
522 S_028760_COLOR_COMB_FCN(si_translate_blend_opt_function(eqRGB)) |
529 blend_cntl |= S_028780_COLOR_COMB_FCN(si_translate_blend_function(eqRGB));
533 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_state.c 363 unsigned eqRGB = state->rt[j].rgb_func;
379 bc |= S_028780_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
383 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]
r600_state.c 288 unsigned eqRGB = state->rt[j].rgb_func;
300 bc |= S_028804_COLOR_COMB_FCN(r600_translate_blend_function(eqRGB));
304 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
    [all...]

Completed in 422 milliseconds