Winding (`GL_CW` or `GL_CCW`). Separated from cull mode because the descriptor carries them as independent fields — a draw can be double-sided (None) while still declaring its source winding for downstream consumers that need it.
| 36 | // be double-sided (None) while still declaring its source winding |
| 37 | // for downstream consumers that need it. |
| 38 | inline void FrontFaceCW() |
| 39 | { |
| 40 | glFrontFace(GL_CW); |
| 41 | } |
| 42 | inline void FrontFaceCCW() |
| 43 | { |
| 44 | glFrontFace(GL_CCW); |
no outgoing calls
no test coverage detected