projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f348bd
)
vk/0.210.0: Make pCode a uint32_t pointer
author
Jason Ekstrand
<jason.ekstrand@intel.com>
Tue, 1 Dec 2015 01:30:38 +0000
(17:30 -0800)
committer
Jason Ekstrand
<jason.ekstrand@intel.com>
Thu, 3 Dec 2015 21:43:52 +0000
(13:43 -0800)
include/vulkan/vulkan.h
patch
|
blob
|
history
diff --git
a/include/vulkan/vulkan.h
b/include/vulkan/vulkan.h
index 49241de1863468934ed1ae2712955efbd0b37a3f..afe54d9814a0f62e9d6e892db1778dfb4057f603 100644
(file)
--- a/
include/vulkan/vulkan.h
+++ b/
include/vulkan/vulkan.h
@@
-1563,9
+1563,9
@@
typedef struct VkImageViewCreateInfo {
typedef struct VkShaderModuleCreateInfo {
VkStructureType sType;
const void* pNext;
- size_t codeSize;
- const void* pCode;
VkShaderModuleCreateFlags flags;
+ size_t codeSize;
+ const uint32_t* pCode;
} VkShaderModuleCreateInfo;
typedef struct {