mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 01:08:18 -05:00
renderer_(opengl/vulkan): Fix tessellation clockwise parameter
This should be assigned CW only on Triangles_CW rather than not Triangles_CCW, making CCW the default winding order rather than CW.
This commit is contained in:
@ -390,7 +390,7 @@ public:
|
||||
FractionalEven = 2,
|
||||
};
|
||||
|
||||
enum class OutputPrimitves : u32 {
|
||||
enum class OutputPrimitives : u32 {
|
||||
Points = 0,
|
||||
Lines = 1,
|
||||
Triangles_CW = 2,
|
||||
@ -401,7 +401,7 @@ public:
|
||||
union {
|
||||
BitField<0, 2, DomainType> domain_type;
|
||||
BitField<4, 2, Spacing> spacing;
|
||||
BitField<8, 2, OutputPrimitves> output_primitives;
|
||||
BitField<8, 2, OutputPrimitives> output_primitives;
|
||||
};
|
||||
} params;
|
||||
|
||||
|
Reference in New Issue
Block a user