• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_FWD_H__
22 #define __GST_VULKAN_FWD_H__
23 
24 #include <gst/gst.h>
25 #include <gst/vulkan/vulkan-prelude.h>
26 
27 G_BEGIN_DECLS
28 
29 typedef struct _GstVulkanInstance GstVulkanInstance;
30 typedef struct _GstVulkanInstanceClass GstVulkanInstanceClass;
31 typedef struct _GstVulkanInstancePrivate GstVulkanInstancePrivate;
32 
33 typedef struct _GstVulkanDevice GstVulkanDevice;
34 typedef struct _GstVulkanDeviceClass GstVulkanDeviceClass;
35 typedef struct _GstVulkanDevicePrivate GstVulkanDevicePrivate;
36 
37 typedef struct _GstVulkanPhysicalDevice GstVulkanPhysicalDevice;
38 typedef struct _GstVulkanPhysicalDeviceClass GstVulkanPhysicalDeviceClass;
39 typedef struct _GstVulkanPhysicalDevicePrivate GstVulkanPhysicalDevicePrivate;
40 
41 typedef struct _GstVulkanQueue GstVulkanQueue;
42 typedef struct _GstVulkanQueueClass GstVulkanQueueClass;
43 typedef struct _GstVulkanQueuePrivate GstVulkanQueuePrivate;
44 
45 typedef struct _GstVulkanCommandPool GstVulkanCommandPool;
46 typedef struct _GstVulkanCommandPoolClass GstVulkanCommandPoolClass;
47 typedef struct _GstVulkanCommandPoolPrivate GstVulkanCommandPoolPrivate;
48 
49 typedef struct _GstVulkanCommandBuffer GstVulkanCommandBuffer;
50 
51 typedef struct _GstVulkanDescriptorSet GstVulkanDescriptorSet;
52 
53 typedef struct _GstVulkanDescriptorPool GstVulkanDescriptorPool;
54 typedef struct _GstVulkanDescriptorPoolClass GstVulkanDescriptorPoolClass;
55 typedef struct _GstVulkanDescriptorPoolPrivate GstVulkanDescriptorPoolPrivate;
56 
57 typedef struct _GstVulkanDescriptorCache GstVulkanDescriptorCache;
58 typedef struct _GstVulkanDescriptorCacheClass GstVulkanDescriptorCacheClass;
59 typedef struct _GstVulkanDescriptorCachePrivate GstVulkanDescriptorCachePrivate;
60 
61 typedef struct _GstVulkanDisplay GstVulkanDisplay;
62 typedef struct _GstVulkanDisplayClass GstVulkanDisplayClass;
63 typedef struct _GstVulkanDisplayPrivate GstVulkanDisplayPrivate;
64 
65 typedef struct _GstVulkanWindow GstVulkanWindow;
66 typedef struct _GstVulkanWindowClass GstVulkanWindowClass;
67 typedef struct _GstVulkanWindowPrivate GstVulkanWindowPrivate;
68 
69 typedef struct _GstVulkanFence GstVulkanFence;
70 
71 typedef struct _GstVulkanFenceCache GstVulkanFenceCache;
72 typedef struct _GstVulkanFenceCacheClass GstVulkanFenceCacheClass;
73 
74 typedef struct _GstVulkanMemory GstVulkanMemory;
75 typedef struct _GstVulkanMemoryAllocator GstVulkanMemoryAllocator;
76 typedef struct _GstVulkanMemoryAllocatorClass GstVulkanMemoryAllocatorClass;
77 
78 typedef struct _GstVulkanBufferMemory GstVulkanBufferMemory;
79 typedef struct _GstVulkanBufferMemoryAllocator GstVulkanBufferMemoryAllocator;
80 typedef struct _GstVulkanBufferMemoryAllocatorClass GstVulkanBufferMemoryAllocatorClass;
81 
82 typedef struct _GstVulkanBufferPool GstVulkanBufferPool;
83 typedef struct _GstVulkanBufferPoolClass GstVulkanBufferPoolClass;
84 typedef struct _GstVulkanBufferPoolPrivate GstVulkanBufferPoolPrivate;
85 
86 typedef struct _GstVulkanHandle GstVulkanHandle;
87 
88 typedef struct _GstVulkanHandlePool GstVulkanHandlePool;
89 typedef struct _GstVulkanHandlePoolClass GstVulkanHandlePoolClass;
90 
91 typedef struct _GstVulkanImageMemory GstVulkanImageMemory;
92 typedef struct _GstVulkanImageMemoryAllocator GstVulkanImageMemoryAllocator;
93 typedef struct _GstVulkanImageMemoryAllocatorClass GstVulkanImageMemoryAllocatorClass;
94 
95 typedef struct _GstVulkanImageBufferPool GstVulkanImageBufferPool;
96 typedef struct _GstVulkanImageBufferPoolClass GstVulkanImageBufferPoolClass;
97 typedef struct _GstVulkanImageBufferPoolPrivate GstVulkanImageBufferPoolPrivate;
98 
99 typedef struct _GstVulkanImageView GstVulkanImageView;
100 
101 typedef struct _GstVulkanBarrierMemoryInfo GstVulkanBarrierMemoryInfo;
102 typedef struct _GstVulkanBarrierBufferInfo GstVulkanBarrierBufferInfo;
103 typedef struct _GstVulkanBarrierImageInfo GstVulkanBarrierImageInfo;
104 
105 typedef struct _GstVulkanTrashList GstVulkanTrashList;
106 typedef struct _GstVulkanTrashListClass GstVulkanTrashListClass;
107 
108 typedef struct _GstVulkanTrash GstVulkanTrash;
109 
110 typedef struct _GstVulkanFullScreenQuad GstVulkanFullScreenQuad;
111 typedef struct _GstVulkanFullScreenQuadClass GstVulkanFullScreenQuadClass;
112 typedef struct _GstVulkanFullScreenQuadPrivate GstVulkanFullScreenQuadPrivate;
113 
114 G_END_DECLS
115 
116 #endif /* __GST_VULKAN_FWD_H__ */
117