Explorar el Código

maxwell_to_gl: Implement R8G8_USCALED

ReinUsesLisp hace 6 años
padre
commit
8bb9eef97b
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      src/video_core/renderer_opengl/maxwell_to_gl.h

+ 8 - 0
src/video_core/renderer_opengl/maxwell_to_gl.h

@@ -90,6 +90,14 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
             LOG_ERROR(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
             return {};
         }
+    case Maxwell::VertexAttribute::Type::UnsignedScaled:
+        switch (attrib.size) {
+        case Maxwell::VertexAttribute::Size::Size_8_8:
+            return GL_UNSIGNED_BYTE;
+        default:
+            LOG_ERROR(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
+            return {};
+        }
     default:
         LOG_ERROR(Render_OpenGL, "Unimplemented vertex type={}", attrib.TypeString());
         return {};