vulkan: VK_API_VERSION has been removed

In a stable release too, naughty.

Use VK_API_VERSION_1_0 instead

https://bugzilla.gnome.org/show_bug.cgi?id=764066
This commit is contained in:
Matthew Waters 2016-03-23 22:13:47 +11:00
parent c02f2718b2
commit dcfa7ee044

View file

@ -299,7 +299,7 @@ gst_vulkan_instance_open (GstVulkanInstance * instance, GError ** error)
app.applicationVersion = 0;
app.pEngineName = APP_SHORT_NAME;
app.engineVersion = 0;
app.apiVersion = VK_API_VERSION;
app.apiVersion = VK_API_VERSION_1_0;
inst_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
inst_info.pNext = NULL;