mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
vk/0.130: Define enum VkImageAspectFlagBits
This commit is contained in:
parent
55ab1737d3
commit
f89e2e6304
1 changed files with 7 additions and 0 deletions
|
|
@ -1034,6 +1034,13 @@ typedef enum {
|
|||
} VkCmdBufferOptimizeFlagBits;
|
||||
typedef VkFlags VkCmdBufferOptimizeFlags;
|
||||
|
||||
typedef enum {
|
||||
VK_IMAGE_ASPECT_COLOR_BIT = 0x00000001,
|
||||
VK_IMAGE_ASPECT_DEPTH_BIT = 0x00000002,
|
||||
VK_IMAGE_ASPECT_STENCIL_BIT = 0x00000004,
|
||||
} VkImageAspectFlagBits;
|
||||
typedef VkFlags VkImageAspectFlags;
|
||||
|
||||
typedef enum {
|
||||
VK_PIPE_EVENT_TOP_OF_PIPE_BIT = 0x00000001,
|
||||
VK_PIPE_EVENT_VERTEX_PROCESSING_COMPLETE_BIT = 0x00000002,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue