Home
last modified time | relevance | path

Searched refs:pipe_state (Results 1 – 4 of 4) sorted by relevance

/external/vulkan-validation-layers/layers/
Dcore_validation.cpp4787 bool validate_dual_src_blend_feature(layer_data *device_data, PIPELINE_STATE *pipe_state) { in validate_dual_src_blend_feature() argument
4789 if (pipe_state->graphicsPipelineCI.pColorBlendState) { in validate_dual_src_blend_feature()
4790 for (size_t i = 0; i < pipe_state->attachments.size(); ++i) { in validate_dual_src_blend_feature()
4792 … if ((pipe_state->attachments[i].dstAlphaBlendFactor == VK_BLEND_FACTOR_SRC1_COLOR) || in validate_dual_src_blend_feature()
4793 … (pipe_state->attachments[i].dstAlphaBlendFactor == VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR) || in validate_dual_src_blend_feature()
4794 … (pipe_state->attachments[i].dstAlphaBlendFactor == VK_BLEND_FACTOR_SRC1_ALPHA) || in validate_dual_src_blend_feature()
4795 … (pipe_state->attachments[i].dstAlphaBlendFactor == VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA) || in validate_dual_src_blend_feature()
4796 … (pipe_state->attachments[i].srcAlphaBlendFactor == VK_BLEND_FACTOR_SRC1_COLOR) || in validate_dual_src_blend_feature()
4797 … (pipe_state->attachments[i].srcAlphaBlendFactor == VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR) || in validate_dual_src_blend_feature()
4798 … (pipe_state->attachments[i].srcAlphaBlendFactor == VK_BLEND_FACTOR_SRC1_ALPHA) || in validate_dual_src_blend_feature()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_pipe.h215 struct pipe_stencil_ref pipe_state; member
Dr600_state_common.c283 rctx->stencil_ref.pipe_state = *state; in r600_set_pipe_stencil_ref()
311 ref.ref_value[0] = rctx->stencil_ref.pipe_state.ref_value[0]; in r600_bind_dsa_state()
312 ref.ref_value[1] = rctx->stencil_ref.pipe_state.ref_value[1]; in r600_bind_dsa_state()
Dr600_blit.c73 util_blitter_save_stencil_ref(rctx->blitter, &rctx->stencil_ref.pipe_state); in r600_blitter_begin()