deferred skybox, fixes to use of ARB_depth_clamp extension usage, have TextureKey explicitly in QuadBatch

This commit is contained in:
veclavtalica
2024-10-22 09:30:14 +03:00
parent c49789f1f4
commit 48f63fc9df
4 changed files with 45 additions and 10 deletions

View File

@ -9,6 +9,7 @@ typedef enum TextureMode {
TEXTURE_MODE_OPAQUE, /* all pixels are solid */
TEXTURE_MODE_SEETHROUGH, /* some pixels are alpha zero */
TEXTURE_MODE_GHOSTLY, /* arbitrary alpha values */
TEXTURE_MODE_UNKNOWN = -1, /* a sentinel */
} TextureMode;
#endif