diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-05 03:29:21 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-05 03:29:21 +0200 |
commit | 6d1e30e04171837f2b1b0dff77089def90750a49 (patch) | |
tree | cadb9d686e187e7240aa2528a80c5a6d641d8071 | |
parent | Merge pull request #849 from DarkLordZach/xci (diff) | |
download | yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar.gz yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar.bz2 yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar.lz yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar.xz yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.tar.zst yuzu-6d1e30e04171837f2b1b0dff77089def90750a49.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 9 |
1 files changed, 7 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..5fafe35b9 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp @@ -169,8 +169,13 @@ 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); } |