Specular reflections now sample from the texture color.

This commit is contained in:
Justin Marshall
2026-05-21 19:50:23 -07:00
parent 345e6bfc81
commit 7b60a99f96
7 changed files with 44 additions and 22 deletions
+3 -2
View File
@@ -1569,8 +1569,9 @@ void APIENTRY glGetQueryObjectiv(GLuint id, GLenum pname, GLint* params);
enum GeometryFlag_t
{
GEOMETRY_FLAG_NONE = 0,
GEOMETRY_FLAG_SKELETAL,
GEOMETRY_FLAG_UNLIT
GEOMETRY_FLAG_SKELETAL = 1,
GEOMETRY_FLAG_UNLIT = 2,
GEOMETRY_FLAG_GLASS = 4
};
void APIENTRY glGeometryFlagf(GLfloat flag);