From: Chia-I Wu Date: Mon, 26 Oct 2015 11:22:06 +0000 (+0800) Subject: bug 14462: endianness of code for shader modules (WIP) X-Git-Tag: upstream/1.1.92~4617 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=913622fac448650c2dba1c626968f6d7d53d2096;p=platform%2Fupstream%2FVulkan-Tools.git 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 --- diff --git a/include/vulkan.h b/include/vulkan.h index b067b83..518300f 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;