mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 19:02:57 +00:00
maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt.
This commit is contained in:
parent
92304181d5
commit
2ff86f5765
|
@ -56,6 +56,9 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
|
|||
return {};
|
||||
}
|
||||
|
||||
case Maxwell::VertexAttribute::Type::UnsignedInt:
|
||||
return GL_UNSIGNED_INT;
|
||||
|
||||
case Maxwell::VertexAttribute::Type::Float:
|
||||
return GL_FLOAT;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue