1 /* 2 * GStreamer 3 * Copyright (C) 2015 Matthew Waters <matthew@centricular.com> 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Library General Public License for more details. 14 * 15 * You should have received a copy of the GNU Library General Public 16 * License along with this library; if not, write to the 17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 */ 20 21 #ifndef __GST_VULKAN_H__ 22 #define __GST_VULKAN_H__ 23 24 #include <gst/gst.h> 25 26 #include <gst/vulkan/gstvkapi.h> 27 #include <gst/vulkan/gstvkdebug.h> 28 #include <gst/vulkan/gstvkerror.h> 29 #include <gst/vulkan/gstvkformat.h> 30 31 /* vulkan wrapper objects */ 32 #include <gst/vulkan/gstvkinstance.h> 33 #include <gst/vulkan/gstvkphysicaldevice.h> 34 #include <gst/vulkan/gstvkdevice.h> 35 #include <gst/vulkan/gstvkqueue.h> 36 #include <gst/vulkan/gstvkfence.h> 37 #include <gst/vulkan/gstvkdisplay.h> 38 #include <gst/vulkan/gstvkwindow.h> 39 #include <gst/vulkan/gstvkmemory.h> 40 #include <gst/vulkan/gstvkbarrier.h> 41 #include <gst/vulkan/gstvkbuffermemory.h> 42 #include <gst/vulkan/gstvkimagememory.h> 43 #include <gst/vulkan/gstvkimageview.h> 44 #include <gst/vulkan/gstvkbufferpool.h> 45 #include <gst/vulkan/gstvkimagebufferpool.h> 46 #include <gst/vulkan/gstvkcommandbuffer.h> 47 #include <gst/vulkan/gstvkcommandpool.h> 48 #include <gst/vulkan/gstvkdescriptorset.h> 49 #include <gst/vulkan/gstvkdescriptorpool.h> 50 #include <gst/vulkan/gstvkhandle.h> 51 52 /* helper elements */ 53 #include <gst/vulkan/gstvkvideofilter.h> 54 55 /* helper vulkan objects */ 56 #include <gst/vulkan/gstvkdescriptorcache.h> 57 #include <gst/vulkan/gstvktrash.h> 58 #include <gst/vulkan/gstvkswapper.h> 59 #include <gst/vulkan/gstvkhandlepool.h> 60 #include <gst/vulkan/gstvkfullscreenquad.h> 61 62 #include <gst/vulkan/gstvkutils.h> 63 64 #endif /* __GST_VULKAN_H__ */ 65