summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2016-03-23 22:13:47 +1100
committerMatthew Waters <matthew@centricular.com>2016-03-23 22:15:35 +1100
commitdcfa7ee0446648bdffe5e96e9ec17ba837417e27 (patch)
tree427cf6a716892223bd0fdd862e98da6dd284c3d1
parentc02f2718b25e9114e85f782e86a4cb4ae562d03b (diff)
downloadgstreamer-plugins-bad-dcfa7ee0446648bdffe5e96e9ec17ba837417e27.tar.gz
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
-rw-r--r--ext/vulkan/vkinstance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/vulkan/vkinstance.c b/ext/vulkan/vkinstance.c
index 28c4e78e2..ae00e490e 100644
--- a/ext/vulkan/vkinstance.c
+++ b/ext/vulkan/vkinstance.c
@@ -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;