summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/renderer_opengl/maxwell_to_gl.h3
1 files changed, 3 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 43be69dd1..c439446b1 100644
--- a/src/video_core/renderer_opengl/maxwell_to_gl.h
+++ b/src/video_core/renderer_opengl/maxwell_to_gl.h
@@ -45,6 +45,9 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
45 case Maxwell::VertexAttribute::Type::SignedNorm: { 45 case Maxwell::VertexAttribute::Type::SignedNorm: {
46 46
47 switch (attrib.size) { 47 switch (attrib.size) {
48 case Maxwell::VertexAttribute::Size::Size_32_32_32:
49 return GL_INT;
50 case Maxwell::VertexAttribute::Size::Size_8_8:
48 case Maxwell::VertexAttribute::Size::Size_8_8_8_8: 51 case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
49 return GL_BYTE; 52 return GL_BYTE;
50 case Maxwell::VertexAttribute::Size::Size_16_16: 53 case Maxwell::VertexAttribute::Size::Size_16_16: