Skip to content
Snippets Groups Projects
Unverified Commit e56a444d authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1044 from bunnei/linestrip

maxwell_to_gl: Implement PrimitiveTopology::LineStrip.
parents fecffeb0 8fe118bc
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment