Uext fn names
This commit is contained in:
parent
c43db60df6
commit
8b200fc8f9
1 changed files with 8 additions and 8 deletions
|
|
@ -191,14 +191,14 @@ public:
|
||||||
|
|
||||||
// No more pipelines required, everything is bound at command buffer level
|
// No more pipelines required, everything is bound at command buffer level
|
||||||
|
|
||||||
vkCmdSetViewportWithCount(drawCmdBuffers[i], 1, &viewport);
|
vkCmdSetViewportWithCountEXT(drawCmdBuffers[i], 1, &viewport);
|
||||||
vkCmdSetScissorWithCount(drawCmdBuffers[i], 1, &scissor);
|
vkCmdSetScissorWithCountEXT(drawCmdBuffers[i], 1, &scissor);
|
||||||
vkCmdSetCullMode(drawCmdBuffers[i], VK_CULL_MODE_BACK_BIT);
|
vkCmdSetCullModeEXT(drawCmdBuffers[i], VK_CULL_MODE_BACK_BIT);
|
||||||
vkCmdSetFrontFace(drawCmdBuffers[i], VK_FRONT_FACE_COUNTER_CLOCKWISE);
|
vkCmdSetFrontFaceEXT(drawCmdBuffers[i], VK_FRONT_FACE_COUNTER_CLOCKWISE);
|
||||||
vkCmdSetDepthTestEnable(drawCmdBuffers[i], VK_TRUE);
|
vkCmdSetDepthTestEnableEXT(drawCmdBuffers[i], VK_TRUE);
|
||||||
vkCmdSetDepthWriteEnable(drawCmdBuffers[i], VK_TRUE);
|
vkCmdSetDepthWriteEnableEXT(drawCmdBuffers[i], VK_TRUE);
|
||||||
vkCmdSetDepthCompareOp(drawCmdBuffers[i], VK_COMPARE_OP_LESS_OR_EQUAL);
|
vkCmdSetDepthCompareOpEXT(drawCmdBuffers[i], VK_COMPARE_OP_LESS_OR_EQUAL);
|
||||||
vkCmdSetPrimitiveTopology(drawCmdBuffers[i], VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST);
|
vkCmdSetPrimitiveTopologyEXT(drawCmdBuffers[i], VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST);
|
||||||
|
|
||||||
VkVertexInputBindingDescription2EXT vertexInputBinding{};
|
VkVertexInputBindingDescription2EXT vertexInputBinding{};
|
||||||
vertexInputBinding.sType = VK_STRUCTURE_TYPE_VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT;
|
vertexInputBinding.sType = VK_STRUCTURE_TYPE_VERTEX_INPUT_BINDING_DESCRIPTION_2_EXT;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue