1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0031596: Visualization, OpenGl_Context - take GL_OES_texture_float extension into account for arbTexFloat flag

This commit is contained in:
kgv 2020-06-03 12:20:49 +03:00 committed by bugmaster
parent d4cefcc0da
commit 59ec2ccec9

View File

@ -1543,8 +1543,9 @@ void OpenGl_Context::init (const Standard_Boolean theIsCoreProfile)
hasHighp = Standard_True;
}
arbTexFloat = IsGlGreaterEqual (3, 0)
&& FindProcShort (glTexImage3D);
arbTexFloat = (IsGlGreaterEqual (3, 0)
&& FindProcShort (glTexImage3D))
|| CheckExtension ("GL_OES_texture_float");
hasTexFloatLinear = arbTexFloat
&& CheckExtension ("GL_OES_texture_float_linear");