serenity/Tests/LibGL
Luke Wilde 971d6ce16f LibGL: Reject GL_LEFT and GL_RIGHT in glCullFace
glCullFace only accepts GL_FRONT, GL_BACK and GL_FRONT_AND_BACK.
We checked if the mode was valid by performing
```
cull_mode < GL_FRONT || cull_mode > GL_FRONT_AND_BACK
```

However, this range also contains GL_LEFT and GL_RIGHT, which we would
accept when we should return a GL_INVALID_ENUM error.
2022-06-04 22:25:16 +01:00
..
reference-images LibGL+LibGPU+LibSoftGPU: Implement point and line drawing 2022-05-09 21:49:48 +02:00
CMakeLists.txt LibGL: Check that texture name is allocated before marking it as free 2022-06-02 13:14:39 +02:00
TestAPI.cpp LibGL: Reject GL_LEFT and GL_RIGHT in glCullFace 2022-06-04 22:25:16 +01:00
TestRender.cpp LibGL+LibGPU+LibSoftGPU: Implement point and line drawing 2022-05-09 21:49:48 +02:00