Home
last modified time | relevance | path

Searched refs:m_cb_state (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp1147 memset(&m_cb_state, 0, sizeof(m_cb_state)); in VkPipelineObj()
1148 m_cb_state.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO; in VkPipelineObj()
1149 m_cb_state.pNext = VK_NULL_HANDLE; in VkPipelineObj()
1150 m_cb_state.logicOp = VK_LOGIC_OP_COPY; in VkPipelineObj()
1151 m_cb_state.blendConstants[0] = 1.0f; in VkPipelineObj()
1152 m_cb_state.blendConstants[1] = 1.0f; in VkPipelineObj()
1153 m_cb_state.blendConstants[2] = 1.0f; in VkPipelineObj()
1154 m_cb_state.blendConstants[3] = 1.0f; in VkPipelineObj()
1257 m_cb_state.attachmentCount = m_colorAttachments.size(); in CreateVKPipeline()
1258 m_cb_state.pAttachments = m_colorAttachments.data(); in CreateVKPipeline()
[all …]
Dvkrenderframework.h415 VkPipelineColorBlendStateCreateInfo m_cb_state; variable