Update glslang to 15.2.0
This commit is contained in:
parent
9967cfb319
commit
c6344588c2
74 changed files with 12225 additions and 12593 deletions
|
|
@ -214,7 +214,7 @@ void VkShaderCache::Load()
|
|||
return;
|
||||
|
||||
uint32_t version = readUInt32(fr);
|
||||
if (version != 1)
|
||||
if (version != 2)
|
||||
return;
|
||||
|
||||
std::vector<char> strbuffer;
|
||||
|
|
@ -265,7 +265,7 @@ void VkShaderCache::Save()
|
|||
|
||||
fw->Write("shadercache", 11);
|
||||
|
||||
uint32_t version = 1;
|
||||
uint32_t version = 2;
|
||||
writeUInt32(fw, version);
|
||||
|
||||
writeUInt32(fw, CodeCache.size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue