summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-08-05 03:36:55 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-08-05 03:36:55 +0200
commitb96010bfa94f3127c33df8fb456e80080fc20753 (patch)
tree5a8e18a1082405e74654389a1143ab18a3cce2f1
parentfix the attrib format for ints (diff)
downloadyuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.gz
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.bz2
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.lz
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.xz
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.zst
yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.zip
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index 5fafe35b9..c2a931469 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -170,12 +170,13 @@ std::pair<u8*, GLintptr> RasterizerOpenGL::SetupVertexArrays(u8* array_ptr,
glEnableVertexAttribArray(index);
if (attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::SignedInt ||
- attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::UnsignedInt)
+ attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::UnsignedInt) {
glVertexAttribIFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib),
attrib.offset);
- else
+ } else {
glVertexAttribFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib),
attrib.IsNormalized() ? GL_TRUE : GL_FALSE, attrib.offset);
+ }
glVertexAttribBinding(index, attrib.buffer);
}