maxwell_to_gl: Implement PrimitiveTopology::Lines

Used by Splatoon 2's debug menu.
merge-requests/60/head
OatmealDome 2018-08-22 01:01:06 +07:00 committed by GitHub
parent 92b85fad70
commit ad1220e1b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

@ -107,6 +107,8 @@ inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) {
switch (topology) {
case Maxwell::PrimitiveTopology::Points:
return GL_POINTS;
case Maxwell::PrimitiveTopology::Lines:
return GL_LINES;
case Maxwell::PrimitiveTopology::LineStrip:
return GL_LINE_STRIP;
case Maxwell::PrimitiveTopology::Triangles: