summaryrefslogtreecommitdiffstats
path: root/vulkan.c
diff options
context:
space:
mode:
Diffstat (limited to 'vulkan.c')
-rw-r--r--vulkan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vulkan.c b/vulkan.c
index 420be16..0b9bb81 100644
--- a/vulkan.c
+++ b/vulkan.c
@@ -520,8 +520,8 @@ static void createpipeline(struct ppln *ppln, VkDevice dev, const VkExtent2D *ex
if (res != VK_SUCCESS)
eprintf("Could not create pipeline layout");
- vsmod = createsmod(dev, _binary_vertex_spv_start, _binary_vertex_spv_size);
- fsmod = createsmod(dev, _binary_fragment_spv_start, _binary_fragment_spv_size);
+ vsmod = createsmod(dev, vertex_spv_data, vertex_spv_size);
+ fsmod = createsmod(dev, fragment_spv_data, fragment_spv_size);
gpcinf = (VkGraphicsPipelineCreateInfo){
.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO,