diff options
author | Ian Romanick <[email protected]> | 2015-05-18 13:54:25 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2015-05-28 16:56:32 -0700 |
commit | 1ac6a8f1d1952a20d54df3e513c253d7988402ac (patch) | |
tree | ae38d4966f22f6900a33ba1204601b155b0606ec /src/mesa/main/texstorage.c | |
parent | 92e362191e6c1c15e3944464fbf6bbda9e7d9892 (diff) |
Revert "mesa: Add ARB_direct_state_access checks in texture functions"
This reverts commit 8940957238e8584ce27295791cee4cc3d6f7cf1e.
Acked-by: Fredrik Höglund <[email protected]>
Cc: "10.6" <[email protected]>
Diffstat (limited to 'src/mesa/main/texstorage.c')
-rw-r--r-- | src/mesa/main/texstorage.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/texstorage.c b/src/mesa/main/texstorage.c index dee74a825ea..53cb2c091f8 100644 --- a/src/mesa/main/texstorage.c +++ b/src/mesa/main/texstorage.c @@ -507,13 +507,6 @@ texturestorage(GLuint dims, GLuint texture, GLsizei levels, _mesa_lookup_enum_by_nr(internalformat), width, height, depth); - if (!ctx->Extensions.ARB_direct_state_access) { - _mesa_error(ctx, GL_INVALID_OPERATION, - "glTextureStorage%uD(GL_ARB_direct_state_access " - "is not supported)", dims); - return; - } - /* Check the format to make sure it is sized. */ if (!_mesa_is_legal_tex_storage_format(ctx, internalformat)) { _mesa_error(ctx, GL_INVALID_ENUM, |