mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
vkdisplay: forward declare GstVulkanDisplayType
This commit is contained in:
parent
f0fb45dd76
commit
3ed50f36ed
2 changed files with 4 additions and 2 deletions
|
@ -36,6 +36,8 @@ typedef struct _GstVulkanDevicePrivate GstVulkanDevicePrivate;
|
|||
typedef struct _GstVulkanQueue GstVulkanQueue;
|
||||
typedef struct _GstVulkanQueueClass GstVulkanQueueClass;
|
||||
|
||||
typedef enum _GstVulkanDisplayType GstVulkanDisplayType;
|
||||
|
||||
typedef struct _GstVulkanDisplay GstVulkanDisplay;
|
||||
typedef struct _GstVulkanDisplayClass GstVulkanDisplayClass;
|
||||
typedef struct _GstVulkanDisplayPrivate GstVulkanDisplayPrivate;
|
||||
|
|
|
@ -41,7 +41,7 @@ GType gst_vulkan_display_get_type (void);
|
|||
|
||||
#define GST_VULKAN_DISPLAY_CONTEXT_TYPE_STR "gst.vulkan.display"
|
||||
|
||||
typedef enum
|
||||
enum _GstVulkanDisplayType
|
||||
{
|
||||
GST_VULKAN_DISPLAY_TYPE_NONE = 0,
|
||||
GST_VULKAN_DISPLAY_TYPE_X11 = (1 << 0),
|
||||
|
@ -51,7 +51,7 @@ typedef enum
|
|||
GST_VULKAN_DISPLAY_TYPE_WIN32 = (1 << 4),
|
||||
|
||||
GST_VULKAN_DISPLAY_TYPE_ANY = G_MAXUINT32
|
||||
} GstVulkanDisplayType;
|
||||
};
|
||||
|
||||
/**
|
||||
* GstVulkanDisplay:
|
||||
|
|
Loading…
Reference in a new issue