diff options
Diffstat (limited to 'thirdparty/glslang/SPIRV/SPVRemapper.cpp')
-rw-r--r-- | thirdparty/glslang/SPIRV/SPVRemapper.cpp | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/thirdparty/glslang/SPIRV/SPVRemapper.cpp b/thirdparty/glslang/SPIRV/SPVRemapper.cpp index fdfbeb90cd..56d6d5d4a5 100644 --- a/thirdparty/glslang/SPIRV/SPVRemapper.cpp +++ b/thirdparty/glslang/SPIRV/SPVRemapper.cpp @@ -297,21 +297,15 @@ namespace spv { std::string spirvbin_t::literalString(unsigned word) const { std::string literal; - const spirword_t * pos = spv.data() + word; literal.reserve(16); - do { - spirword_t word = *pos; - for (int i = 0; i < 4; i++) { - char c = word & 0xff; - if (c == '\0') - return literal; - literal += c; - word >>= 8; - } - pos++; - } while (true); + const char* bytes = reinterpret_cast<const char*>(spv.data() + word); + + while (bytes && *bytes) + literal += *bytes++; + + return literal; } void spirvbin_t::applyMap() |