summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-06-10 20:55:27 -0400
committerGravatar GitHub2018-06-10 20:55:27 -0400
commit09b8a16414ec47fbd1c04b6c78382a82cc8c8961 (patch)
treee5a8f4830a7fed4589a04eb5bf67bcbfb96e47a4 /src
parentMerge pull request #553 from Subv/iset (diff)
parentGPU: Convert the gl_InstanceId and gl_VertexID variables to floats when readi... (diff)
downloadyuzu-09b8a16414ec47fbd1c04b6c78382a82cc8c8961.tar.gz
yuzu-09b8a16414ec47fbd1c04b6c78382a82cc8c8961.tar.xz
yuzu-09b8a16414ec47fbd1c04b6c78382a82cc8c8961.zip
Merge pull request #555 from Subv/gpu_sysregs
GPU: Convert the gl_InstanceId and gl_VertexID variables to floats when reading from them.
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_decompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
index 8521be4a1..67726e7c6 100644
--- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp
@@ -538,7 +538,7 @@ private:
538 // vertex shader, and what's the value of the fourth element when inside a Tess Eval 538 // vertex shader, and what's the value of the fourth element when inside a Tess Eval
539 // shader. 539 // shader.
540 ASSERT(stage == Maxwell3D::Regs::ShaderStage::Vertex); 540 ASSERT(stage == Maxwell3D::Regs::ShaderStage::Vertex);
541 return "vec4(0, 0, gl_InstanceID, gl_VertexID)"; 541 return "vec4(0, 0, uintBitsToFloat(gl_InstanceID), uintBitsToFloat(gl_VertexID))";
542 default: 542 default:
543 const u32 index{static_cast<u32>(attribute) - 543 const u32 index{static_cast<u32>(attribute) -
544 static_cast<u32>(Attribute::Index::Attribute_0)}; 544 static_cast<u32>(Attribute::Index::Attribute_0)};