mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 09:09:59 +00:00
maxwell_to_gl: Implement PrimitiveTopology::Points.
- Used by Super Mario Odyssey (in game).
This commit is contained in:
parent
25ba4d1b68
commit
06d0b96ca9
1 changed files with 2 additions and 0 deletions
|
@ -85,6 +85,8 @@ inline GLenum IndexFormat(Maxwell::IndexFormat index_format) {
|
||||||
|
|
||||||
inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) {
|
inline GLenum PrimitiveTopology(Maxwell::PrimitiveTopology topology) {
|
||||||
switch (topology) {
|
switch (topology) {
|
||||||
|
case Maxwell::PrimitiveTopology::Points:
|
||||||
|
return GL_POINTS;
|
||||||
case Maxwell::PrimitiveTopology::Triangles:
|
case Maxwell::PrimitiveTopology::Triangles:
|
||||||
return GL_TRIANGLES;
|
return GL_TRIANGLES;
|
||||||
case Maxwell::PrimitiveTopology::TriangleStrip:
|
case Maxwell::PrimitiveTopology::TriangleStrip:
|
||||||
|
|
Loading…
Reference in a new issue