vulkan-1.0.0: Make extents unsigned
This commit is contained in:
@@ -1209,9 +1209,9 @@ typedef struct VkFormatProperties {
|
|||||||
} VkFormatProperties;
|
} VkFormatProperties;
|
||||||
|
|
||||||
typedef struct VkExtent3D {
|
typedef struct VkExtent3D {
|
||||||
int32_t width;
|
uint32_t width;
|
||||||
int32_t height;
|
uint32_t height;
|
||||||
int32_t depth;
|
uint32_t depth;
|
||||||
} VkExtent3D;
|
} VkExtent3D;
|
||||||
|
|
||||||
typedef struct VkImageFormatProperties {
|
typedef struct VkImageFormatProperties {
|
||||||
@@ -1710,8 +1710,8 @@ typedef struct VkOffset2D {
|
|||||||
} VkOffset2D;
|
} VkOffset2D;
|
||||||
|
|
||||||
typedef struct VkExtent2D {
|
typedef struct VkExtent2D {
|
||||||
int32_t width;
|
uint32_t width;
|
||||||
int32_t height;
|
uint32_t height;
|
||||||
} VkExtent2D;
|
} VkExtent2D;
|
||||||
|
|
||||||
typedef struct VkRect2D {
|
typedef struct VkRect2D {
|
||||||
|
Reference in New Issue
Block a user