diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-05 07:38:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-05 07:38:54 +0200 |
commit | ce46fb27ca6d771f0c34b81bde4711c65050274d (patch) | |
tree | cc84e9278faa81ec67f760726fe10da85521699d | |
parent | Merge pull request #924 from lioncash/arp (diff) | |
parent | added braces for conditions (diff) | |
download | yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar.gz yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar.bz2 yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar.lz yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar.xz yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.tar.zst yuzu-ce46fb27ca6d771f0c34b81bde4711c65050274d.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp index 6555db5bb..c2a931469 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp @@ -169,8 +169,14 @@ std::pair<u8*, GLintptr> RasterizerOpenGL::SetupVertexArrays(u8* array_ptr, ASSERT(buffer.IsEnabled()); glEnableVertexAttribArray(index); - glVertexAttribFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), - attrib.IsNormalized() ? GL_TRUE : GL_FALSE, attrib.offset); + if (attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::SignedInt || + attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::UnsignedInt) { + glVertexAttribIFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), + attrib.offset); + } else { + glVertexAttribFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), + attrib.IsNormalized() ? GL_TRUE : GL_FALSE, attrib.offset); + } glVertexAttribBinding(index, attrib.buffer); } |