Searched refs:eqA (Results 1 - 16 of 16) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_state.c172 static unsigned blend_discard_conditionally(unsigned eqRGB, unsigned eqA, argument
189 (eqA == PIPE_BLEND_ADD || eqA == PIPE_BLEND_REVERSE_SUBTRACT)) {
271 static unsigned blend_read_enable(unsigned eqRGB, unsigned eqA, argument
283 if (eqRGB == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MIN ||
284 eqRGB == PIPE_BLEND_MAX || eqA == PIPE_BLEND_MAX ||
302 if (eqRGB != PIPE_BLEND_MIN && eqA != PIPE_BLEND_MIN &&
303 eqRGB != PIPE_BLEND_MAX && eqA != PIPE_BLEND_MAX) {
359 const unsigned eqA = state->rt[0].alpha_func; local in function:r300_create_blend_state
413 blend_control |= blend_read_enable(eqRGB, eqA, dstRG
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_state.c173 static unsigned blend_discard_conditionally(unsigned eqRGB, unsigned eqA, argument
190 (eqA == PIPE_BLEND_ADD || eqA == PIPE_BLEND_REVERSE_SUBTRACT)) {
272 static unsigned blend_read_enable(unsigned eqRGB, unsigned eqA, argument
284 if (eqRGB == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MIN ||
285 eqRGB == PIPE_BLEND_MAX || eqA == PIPE_BLEND_MAX ||
296 if (eqRGB != PIPE_BLEND_MIN && eqA != PIPE_BLEND_MIN &&
297 eqRGB != PIPE_BLEND_MAX && eqA != PIPE_BLEND_MAX) {
353 const unsigned eqA = state->rt[0].alpha_func; local in function:r300_create_blend_state
407 blend_control |= blend_read_enable(eqRGB, eqA, dstRG
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Di915_state.c299 GLuint eqA = ctx->Color.Blend[0].EquationA; local in function:i915UpdateBlendState
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) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Di915_state.c299 GLuint eqA = ctx->Color.Blend[0].EquationA; local in function:i915UpdateBlendState
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) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_state.c111 unsigned eqA = blend->rt[0].alpha_func; local in function:i915_create_blend_state
121 eqA != eqRGB) {
131 (i915_translate_blend_func(eqA) << IAB_FUNC_SHIFT));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_state.c159 unsigned eqA = blend->rt[0].alpha_func; local in function:i915_create_blend_state
167 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
174 (i915_translate_blend_func(eqA) << IAB_FUNC_SHIFT));
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A Dradv_pipeline.c714 VkBlendOp eqA = att->alphaBlendOp; local in function:radv_pipeline_init_blend_state
738 if (eqA == VK_BLEND_OP_MIN || eqA == VK_BLEND_OP_MAX) {
745 radv_blend_check_commutativity(&blend, eqA, srcA, dstA,
758 si_blend_remove_dst(&eqA, &srcA, &dstA,
762 si_blend_remove_dst(&eqA, &srcA, &dstA,
791 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
797 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
799 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dsi_state.c496 unsigned eqA = state->rt[j].alpha_func; local in function:si_create_blend_state_mode
522 eqA == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MAX)) {
541 eqA, srcA, dstA, 0x8 << (4 * i));
552 si_blend_remove_dst(&eqA, &srcA, &dstA,
555 si_blend_remove_dst(&eqA, &srcA, &dstA,
584 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
592 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
594 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A DgenX_state_upload.c2956 GLenum eqA = ctx->Color.Blend[i].EquationA; local in function:set_blend_entry_bits
2965 if (eqA == GL_MIN || eqA == GL_MAX)
3021 entry->AlphaBlendFunction = blend_eqn(eqA);
3023 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
4863 GLenum eqA = color->Blend[0].EquationA; local in function:genX
4872 if (eqA == GL_MIN || eqA == GL_MAX)
4925 srcA != srcRGB || dstA != dstRGB || eqA != eqRGB;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_state.c496 unsigned eqA = state->rt[j].alpha_func; local in function:si_create_blend_state_mode
520 eqA == PIPE_BLEND_MIN || eqA == PIPE_BLEND_MAX)) {
537 si_blend_check_commutativity(sctx->screen, blend, eqA, srcA, dstA, 0x8 << (4 * i));
547 si_blend_remove_dst(&eqA, &srcA, &dstA, PIPE_BLENDFACTOR_DST_COLOR,
549 si_blend_remove_dst(&eqA, &srcA, &dstA, PIPE_BLENDFACTOR_DST_ALPHA,
574 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
582 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
584 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A DgenX_state_upload.c2855 GLenum eqA = ctx->Color.Blend[i].EquationA; local in function:set_blend_entry_bits
2864 if (eqA == GL_MIN || eqA == GL_MAX)
2920 entry->AlphaBlendFunction = blend_eqn(eqA);
2922 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
4785 GLenum eqA = color->Blend[0].EquationA; local in function:genX
4794 if (eqA == GL_MIN || eqA == GL_MAX)
4847 srcA != srcRGB || dstA != dstRGB || eqA != eqRGB;
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_pipeline.c657 VkBlendOp eqA = att->alphaBlendOp; local in function:radv_pipeline_init_blend_state
688 if (eqA == VK_BLEND_OP_MIN || eqA == VK_BLEND_OP_MAX) {
694 radv_blend_check_commutativity(&blend, eqA, srcA, dstA, 0x8u << (4 * i));
705 si_blend_remove_dst(&eqA, &srcA, &dstA, VK_BLEND_FACTOR_DST_COLOR,
708 si_blend_remove_dst(&eqA, &srcA, &dstA, VK_BLEND_FACTOR_DST_ALPHA,
733 S_028760_ALPHA_COMB_FCN(si_translate_blend_opt_function(eqA));
739 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
741 blend_cntl |= S_028780_ALPHA_COMB_FCN(si_translate_blend_function(eqA));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
H A Dr600_state.c293 unsigned eqA = state->rt[j].alpha_func; local in function:r600_get_blend_control
305 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
307 bc |= S_028804_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
H A Devergreen_state.c379 unsigned eqA = state->rt[j].alpha_func; local in function:evergreen_create_blend_state_mode
396 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
398 bc |= S_028780_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
H A Dr600_state.c298 unsigned eqA = state->rt[j].alpha_func; local in function:r600_get_blend_control
310 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
312 bc |= S_028804_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));
H A Devergreen_state.c384 unsigned eqA = state->rt[j].alpha_func; local in function:evergreen_create_blend_state_mode
401 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
403 bc |= S_028780_ALPHA_COMB_FCN(r600_translate_blend_function(eqA));

Completed in 186 milliseconds