]> git.tdb.fi Git - libs/gl.git/blobdiff - tools/glslcompiler.cpp
Use standard fixed-size integer types
[libs/gl.git] / tools / glslcompiler.cpp
index 4fe6bc8bd636d75e00cb3f76bd1ee0d6a9fc277e..458a56cee87caec21ef54dc42c5d0a5603a42583 100644 (file)
@@ -149,7 +149,7 @@ int GlslCompiler::main()
 
        if(compile_mode==GL::SL::Compiler::SPIRV)
        {
-               vector<UInt32> code = compiler.get_combined_spirv();
+               vector<uint32_t> code = compiler.get_combined_spirv();
                out->write(reinterpret_cast<char *>(&code.front()), code.size()*4);
        }
        else if(combined)