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 _VK_FWD_H_ 22 #define _VK_FWD_H_ 23 24 #include <gst/gst.h> 25 26 G_BEGIN_DECLS 27 28 typedef struct _GstVulkanInstance GstVulkanInstance; 29 typedef struct _GstVulkanInstanceClass GstVulkanInstanceClass; 30 typedef struct _GstVulkanInstancePrivate GstVulkanInstancePrivate; 31 32 typedef struct _GstVulkanDevice GstVulkanDevice; 33 typedef struct _GstVulkanDeviceClass GstVulkanDeviceClass; 34 typedef struct _GstVulkanDevicePrivate GstVulkanDevicePrivate; 35 36 typedef struct _GstVulkanQueue GstVulkanQueue; 37 typedef struct _GstVulkanQueueClass GstVulkanQueueClass; 38 39 typedef enum _GstVulkanDisplayType GstVulkanDisplayType; 40 41 typedef struct _GstVulkanDisplay GstVulkanDisplay; 42 typedef struct _GstVulkanDisplayClass GstVulkanDisplayClass; 43 typedef struct _GstVulkanDisplayPrivate GstVulkanDisplayPrivate; 44 45 typedef struct _GstVulkanWindow GstVulkanWindow; 46 typedef struct _GstVulkanWindowClass GstVulkanWindowClass; 47 typedef struct _GstVulkanWindowPrivate GstVulkanWindowPrivate; 48 49 typedef struct _GstVulkanSwapper GstVulkanSwapper; 50 typedef struct _GstVulkanSwapperClass GstVulkanSwapperClass; 51 typedef struct _GstVulkanSwapperPrivate GstVulkanSwapperPrivate; 52 53 typedef struct _GstVulkanTrash GstVulkanTrash; 54 55 typedef struct _GstVulkanFence GstVulkanFence; 56 57 typedef struct _GstVulkanMemory GstVulkanMemory; 58 typedef struct _GstVulkanMemoryAllocator GstVulkanMemoryAllocator; 59 typedef struct _GstVulkanMemoryAllocatorClass GstVulkanMemoryAllocatorClass; 60 61 typedef struct _GstVulkanBufferMemory GstVulkanBufferMemory; 62 typedef struct _GstVulkanBufferMemoryAllocator GstVulkanBufferMemoryAllocator; 63 typedef struct _GstVulkanBufferMemoryAllocatorClass GstVulkanBufferMemoryAllocatorClass; 64 65 typedef struct _GstVulkanImageMemory GstVulkanImageMemory; 66 typedef struct _GstVulkanImageMemoryAllocator GstVulkanImageMemoryAllocator; 67 typedef struct _GstVulkanImageMemoryAllocatorClass GstVulkanImageMemoryAllocatorClass; 68 69 typedef struct _GstVulkanBufferPool GstVulkanBufferPool; 70 typedef struct _GstVulkanBufferPoolClass GstVulkanBufferPoolClass; 71 typedef struct _GstVulkanBufferPoolPrivate GstVulkanBufferPoolPrivate; 72 73 G_END_DECLS 74 75 #endif /* _VK_FWD_H_ */ 76