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:
Morph 2022-10-13 15:52:56 -04:00
parent 26b76d2eaf
commit d3114c620d
3 changed files with 6 additions and 6 deletions

View file

@ -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;