mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 15:48:36 +02:00
glsl: Flagged extension EXT_texture3D as "supported" in the builtin compiler.
Previously, the builtins in OES_texture_3D.{frag,vert} were only
compiling properly as a consequence of bug 38015, which allows
unsupported extensions to be enabled. This fix eliminates the builtin
compiler's reliance on bug 38015, so that bug 38015 can be fixed.
This commit is contained in:
parent
e9d49d282d
commit
935e7e4126
1 changed files with 1 additions and 0 deletions
|
|
@ -76,6 +76,7 @@ initialize_context(struct gl_context *ctx, gl_api api)
|
|||
ctx->Extensions.ARB_fragment_coord_conventions = GL_TRUE;
|
||||
ctx->Extensions.EXT_texture_array = GL_TRUE;
|
||||
ctx->Extensions.NV_texture_rectangle = GL_TRUE;
|
||||
ctx->Extensions.EXT_texture3D = GL_TRUE;
|
||||
|
||||
/* GLSL 1.30 isn't fully supported, but we need to advertise 1.30 so that
|
||||
* the built-in functions for 1.30 can be built.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue