maxwell_to_gl: Implement PrimitiveTopology::Lines
Used by Splatoon 2's debug menu.
This commit is contained in:
parent
92b85fad70
commit
ad1220e1b3
|
@ -107,6 +107,8 @@ inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) {
|
||||||
switch (topology) {
|
switch (topology) {
|
||||||
case Maxwell::PrimitiveTopology::Points:
|
case Maxwell::PrimitiveTopology::Points:
|
||||||
return GL_POINTS;
|
return GL_POINTS;
|
||||||
|
case Maxwell::PrimitiveTopology::Lines:
|
||||||
|
return GL_LINES;
|
||||||
case Maxwell::PrimitiveTopology::LineStrip:
|
case Maxwell::PrimitiveTopology::LineStrip:
|
||||||
return GL_LINE_STRIP;
|
return GL_LINE_STRIP;
|
||||||
case Maxwell::PrimitiveTopology::Triangles:
|
case Maxwell::PrimitiveTopology::Triangles:
|
||||||
|
|
Reference in New Issue