Browse Source
Merge pull request #1044 from bunnei/linestrip
maxwell_to_gl: Implement PrimitiveTopology::LineStrip.
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
2 additions and
0 deletions
-
src/video_core/renderer_opengl/maxwell_to_gl.h
|
|
|
@ -91,6 +91,8 @@ inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) { |
|
|
|
switch (topology) { |
|
|
|
case Maxwell::PrimitiveTopology::Points: |
|
|
|
return GL_POINTS; |
|
|
|
case Maxwell::PrimitiveTopology::LineStrip: |
|
|
|
return GL_LINE_STRIP; |
|
|
|
case Maxwell::PrimitiveTopology::Triangles: |
|
|
|
return GL_TRIANGLES; |
|
|
|
case Maxwell::PrimitiveTopology::TriangleStrip: |
|
|
|
|