Browse Source
Merge pull request #993 from bunnei/smo-vtx-pts
Implement VertexAttribute::Size::Size_16_16_16_16 and PrimitiveTopology::Points.
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/video_core/renderer_opengl/maxwell_to_gl.h
|
|
|
@ -31,6 +31,7 @@ inline GLenum VertexType(Maxwell::VertexAttribute attrib) { |
|
|
|
case Maxwell::VertexAttribute::Size::Size_8_8_8_8: |
|
|
|
return GL_UNSIGNED_BYTE; |
|
|
|
case Maxwell::VertexAttribute::Size::Size_16_16: |
|
|
|
case Maxwell::VertexAttribute::Size::Size_16_16_16_16: |
|
|
|
return GL_UNSIGNED_SHORT; |
|
|
|
case Maxwell::VertexAttribute::Size::Size_10_10_10_2: |
|
|
|
return GL_UNSIGNED_INT_2_10_10_10_REV; |
|
|
|
@ -85,6 +86,8 @@ inline GLenum IndexFormat(Maxwell::IndexFormat index_format) { |
|
|
|
|
|
|
|
inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) { |
|
|
|
switch (topology) { |
|
|
|
case Maxwell::PrimitiveTopology::Points: |
|
|
|
return GL_POINTS; |
|
|
|
case Maxwell::PrimitiveTopology::Triangles: |
|
|
|
return GL_TRIANGLES; |
|
|
|
case Maxwell::PrimitiveTopology::TriangleStrip: |
|
|
|
|