summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/renderer_opengl/maxwell_to_gl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/maxwell_to_gl.h b/src/video_core/renderer_opengl/maxwell_to_gl.h
index 679e5ceb2..83ea0cfc0 100644
--- a/src/video_core/renderer_opengl/maxwell_to_gl.h
+++ b/src/video_core/renderer_opengl/maxwell_to_gl.h
@@ -27,6 +27,7 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
27 case Maxwell::VertexAttribute::Type::UnsignedNorm: { 27 case Maxwell::VertexAttribute::Type::UnsignedNorm: {
28 28
29 switch (attrib.size) { 29 switch (attrib.size) {
30 case Maxwell::VertexAttribute::Size::Size_8:
30 case Maxwell::VertexAttribute::Size::Size_8_8: 31 case Maxwell::VertexAttribute::Size::Size_8_8:
31 case Maxwell::VertexAttribute::Size::Size_8_8_8_8: 32 case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
32 return GL_UNSIGNED_BYTE; 33 return GL_UNSIGNED_BYTE;