diff options
author | Matthew Waters <matthew@centricular.com> | 2016-09-01 19:52:40 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2016-11-03 16:58:35 +1100 |
commit | 0f800095e10deaf379a622bf18f04de86f2892a6 (patch) | |
tree | 71694d0d6d8d80d3cd40e5a7bc560eafdd6f02dd /ext/vulkan/vk.h | |
parent | af8c4589ba0eb59180ce7fb9d61e07e52fc82a5b (diff) | |
download | gstreamer-plugins-bad-0f800095e10deaf379a622bf18f04de86f2892a6.tar.gz |
vulkan: add a trash object
This allows pushing the destruction of vulkan resources after the signalling
of an vulkan event. The event facilitates knowing when a specific point in the
vulkan queue has been reached. Only after the event has been signaled can
vulkan resources be freed and/or reused.
Diffstat (limited to 'ext/vulkan/vk.h')
-rw-r--r-- | ext/vulkan/vk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/vulkan/vk.h b/ext/vulkan/vk.h index 0e2039cc3..d50f2ccb9 100644 --- a/ext/vulkan/vk.h +++ b/ext/vulkan/vk.h @@ -30,6 +30,7 @@ #include "vkdevice.h" #include "vkqueue.h" #include "vkfence.h" +#include "vktrash.h" #include "vkdisplay.h" #include "vkwindow.h" #include "vkswapper.h" |