Commit 66192b3e by Jamie Madill

Add GL_STRUCT_ANGLEX case handling to the variable row and column count methods.

TRAC #23749 Signed-off-by: Nicolas Capens
parent 5609378d
......@@ -186,6 +186,7 @@ int VariableRowCount(GLenum type)
switch (type)
{
case GL_NONE:
case GL_STRUCT_ANGLEX:
return 0;
case GL_BOOL:
case GL_FLOAT:
......@@ -243,6 +244,7 @@ int VariableColumnCount(GLenum type)
switch (type)
{
case GL_NONE:
case GL_STRUCT_ANGLEX:
return 0;
case GL_BOOL:
case GL_FLOAT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment