f489fc3a7ddbd9902743deeeb8dde832fce835ab
[platform/upstream/gstreamer.git] / gst-libs / gst / vulkan / vulkan_fwd.h
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
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 _GstVulkanPhysicalDevice GstVulkanPhysicalDevice;
37 typedef struct _GstVulkanPhysicalDeviceClass GstVulkanPhysicalDeviceClass;
38 typedef struct _GstVulkanPhysicalDevicePrivate GstVulkanPhysicalDevicePrivate;
39
40 typedef struct _GstVulkanQueue GstVulkanQueue;
41 typedef struct _GstVulkanQueueClass GstVulkanQueueClass;
42 typedef struct _GstVulkanQueuePrivate GstVulkanQueuePrivate;
43
44 typedef struct _GstVulkanCommandPool GstVulkanCommandPool;
45 typedef struct _GstVulkanCommandPoolClass GstVulkanCommandPoolClass;
46 typedef struct _GstVulkanCommandPoolPrivate GstVulkanCommandPoolPrivate;
47
48 typedef struct _GstVulkanCommandBuffer GstVulkanCommandBuffer;
49
50 typedef struct _GstVulkanDescriptorSet GstVulkanDescriptorSet;
51 typedef struct _GstVulkanDescriptorSetClass GstVulkanDescriptorSetClass;
52 typedef struct _GstVulkanDescriptorSetPrivate GstVulkanDescriptorSetPrivate;
53
54 typedef struct _GstVulkanDescriptorPool GstVulkanDescriptorPool;
55 typedef struct _GstVulkanDescriptorPoolClass GstVulkanDescriptorPoolClass;
56 typedef struct _GstVulkanDescriptorPoolPrivate GstVulkanDescriptorPoolPrivate;
57
58 typedef struct _GstVulkanDescriptorCache GstVulkanDescriptorCache;
59 typedef struct _GstVulkanDescriptorCacheClass GstVulkanDescriptorCacheClass;
60 typedef struct _GstVulkanDescriptorCachePrivate GstVulkanDescriptorCachePrivate;
61
62 typedef struct _GstVulkanDisplay GstVulkanDisplay;
63 typedef struct _GstVulkanDisplayClass GstVulkanDisplayClass;
64 typedef struct _GstVulkanDisplayPrivate GstVulkanDisplayPrivate;
65
66 typedef struct _GstVulkanWindow GstVulkanWindow;
67 typedef struct _GstVulkanWindowClass GstVulkanWindowClass;
68 typedef struct _GstVulkanWindowPrivate GstVulkanWindowPrivate;
69
70 typedef struct _GstVulkanFence GstVulkanFence;
71
72 typedef struct _GstVulkanFenceCache GstVulkanFenceCache;
73 typedef struct _GstVulkanFenceCacheClass GstVulkanFenceCacheClass;
74
75 typedef struct _GstVulkanMemory GstVulkanMemory;
76 typedef struct _GstVulkanMemoryAllocator GstVulkanMemoryAllocator;
77 typedef struct _GstVulkanMemoryAllocatorClass GstVulkanMemoryAllocatorClass;
78
79 typedef struct _GstVulkanBufferMemory GstVulkanBufferMemory;
80 typedef struct _GstVulkanBufferMemoryAllocator GstVulkanBufferMemoryAllocator;
81 typedef struct _GstVulkanBufferMemoryAllocatorClass GstVulkanBufferMemoryAllocatorClass;
82
83 typedef struct _GstVulkanBufferPool GstVulkanBufferPool;
84 typedef struct _GstVulkanBufferPoolClass GstVulkanBufferPoolClass;
85 typedef struct _GstVulkanBufferPoolPrivate GstVulkanBufferPoolPrivate;
86
87 typedef struct _GstVulkanHandle GstVulkanHandle;
88
89 typedef struct _GstVulkanHandlePool GstVulkanHandlePool;
90 typedef struct _GstVulkanHandlePoolClass GstVulkanHandlePoolClass;
91
92 typedef struct _GstVulkanImageMemory GstVulkanImageMemory;
93 typedef struct _GstVulkanImageMemoryAllocator GstVulkanImageMemoryAllocator;
94 typedef struct _GstVulkanImageMemoryAllocatorClass GstVulkanImageMemoryAllocatorClass;
95
96 typedef struct _GstVulkanImageBufferPool GstVulkanImageBufferPool;
97 typedef struct _GstVulkanImageBufferPoolClass GstVulkanImageBufferPoolClass;
98 typedef struct _GstVulkanImageBufferPoolPrivate GstVulkanImageBufferPoolPrivate;
99
100 typedef struct _GstVulkanImageView GstVulkanImageView;
101
102 typedef struct _GstVulkanBarrierMemoryInfo GstVulkanBarrierMemoryInfo;
103 typedef struct _GstVulkanBarrierBufferInfo GstVulkanBarrierBufferInfo;
104 typedef struct _GstVulkanBarrierImageInfo GstVulkanBarrierImageInfo;
105
106 typedef struct _GstVulkanTrashList GstVulkanTrashList;
107 typedef struct _GstVulkanTrashListClass GstVulkanTrashListClass;
108
109 typedef struct _GstVulkanTrash GstVulkanTrash;
110
111 G_END_DECLS
112
113 #endif /* __GST_VULKAN_FWD_H__ */