diff options
| author | 2018-08-05 11:36:55 +1000 | |
|---|---|---|
| committer | 2018-08-05 11:36:55 +1000 | |
| commit | b96010bfa94f3127c33df8fb456e80080fc20753 (patch) | |
| tree | 5a8e18a1082405e74654389a1143ab18a3cce2f1 /src | |
| parent | fix the attrib format for ints (diff) | |
| download | yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.gz yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.tar.xz yuzu-b96010bfa94f3127c33df8fb456e80080fc20753.zip | |
added braces for conditions
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 5 |
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, | |||
| 170 | 170 | ||
| 171 | glEnableVertexAttribArray(index); | 171 | glEnableVertexAttribArray(index); |
| 172 | if (attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::SignedInt || | 172 | if (attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::SignedInt || |
| 173 | attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::UnsignedInt) | 173 | attrib.type == Tegra::Engines::Maxwell3D::Regs::VertexAttribute::Type::UnsignedInt) { |
| 174 | glVertexAttribIFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), | 174 | glVertexAttribIFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), |
| 175 | attrib.offset); | 175 | attrib.offset); |
| 176 | else | 176 | } else { |
| 177 | glVertexAttribFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), | 177 | glVertexAttribFormat(index, attrib.ComponentCount(), MaxwellToGL::VertexType(attrib), |
| 178 | attrib.IsNormalized() ? GL_TRUE : GL_FALSE, attrib.offset); | 178 | attrib.IsNormalized() ? GL_TRUE : GL_FALSE, attrib.offset); |
| 179 | } | ||
| 179 | glVertexAttribBinding(index, attrib.buffer); | 180 | glVertexAttribBinding(index, attrib.buffer); |
| 180 | } | 181 | } |
| 181 | 182 | ||