aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-10-26 19:22:06 +0800
committerChia-I Wu <olv@lunarg.com>2015-10-30 20:49:23 +0800
commit913622fac448650c2dba1c626968f6d7d53d2096 (patch)
tree263da70a840fc773c23d9445a6120a8ad22e22ac
parent27f6fcdcce3ae3311b8c38716126d3ac7c0c23df (diff)
downloadusermoji-913622fac448650c2dba1c626968f6d7d53d2096.tar.xz
bug 14462: endianness of code for shader modules (WIP)
Change the type of pCode to uint32_t*. https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14462
-rw-r--r--include/vulkan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index b067b833..518300f7 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1522,7 +1522,7 @@ typedef struct {
VkStructureType sType;
const void* pNext;
size_t codeSize;
- const void* pCode;
+ const uint32_t* pCode;
VkShaderModuleCreateFlags flags;
} VkShaderModuleCreateInfo;