mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 13:27:52 +00:00
Merge pull request #623 from Subv/vertex_types
GPU: Implement the Size_16_16 and Size_10_10_10_2 vertex attribute types
This commit is contained in:
commit
956b5db52e
1 changed files with 8 additions and 0 deletions
|
@ -29,6 +29,10 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
|
||||||
switch (attrib.size) {
|
switch (attrib.size) {
|
||||||
case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
|
case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
|
||||||
return GL_UNSIGNED_BYTE;
|
return GL_UNSIGNED_BYTE;
|
||||||
|
case Maxwell::VertexAttribute::Size::Size_16_16:
|
||||||
|
return GL_UNSIGNED_SHORT;
|
||||||
|
case Maxwell::VertexAttribute::Size::Size_10_10_10_2:
|
||||||
|
return GL_UNSIGNED_INT_2_10_10_10_REV;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
|
LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
|
||||||
|
@ -41,6 +45,10 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) {
|
||||||
switch (attrib.size) {
|
switch (attrib.size) {
|
||||||
case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
|
case Maxwell::VertexAttribute::Size::Size_8_8_8_8:
|
||||||
return GL_BYTE;
|
return GL_BYTE;
|
||||||
|
case Maxwell::VertexAttribute::Size::Size_16_16:
|
||||||
|
return GL_SHORT;
|
||||||
|
case Maxwell::VertexAttribute::Size::Size_10_10_10_2:
|
||||||
|
return GL_INT_2_10_10_10_REV;
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
|
LOG_CRITICAL(Render_OpenGL, "Unimplemented vertex size={}", attrib.SizeString());
|
||||||
|
|
Loading…
Reference in a new issue