diff options
author | Brian Paul <brianp@vmware.com> | 2011-10-31 10:52:57 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-10-31 10:52:57 -0600 |
commit | 12d69fca096facf0ddb4642faaed4d5f02d76848 (patch) | |
tree | bbc6ab14015b8f75141e87c74eb2fcf40223ea47 /src/mesa/swrast/swrast.h | |
parent | e0a0496971dfd6c0f22b3870e6320128fa895d4d (diff) | |
download | external_mesa3d-12d69fca096facf0ddb4642faaed4d5f02d76848.zip external_mesa3d-12d69fca096facf0ddb4642faaed4d5f02d76848.tar.gz external_mesa3d-12d69fca096facf0ddb4642faaed4d5f02d76848.tar.bz2 |
swrast: implement GL_ARB_texture_storage
Diffstat (limited to 'src/mesa/swrast/swrast.h')
-rw-r--r-- | src/mesa/swrast/swrast.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index 06cc651..08d565b 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -249,6 +249,13 @@ _swrast_finish_render_texture(struct gl_context *ctx, +extern GLboolean +_swrast_AllocTextureStorage(struct gl_context *ctx, + struct gl_texture_object *texObj, + GLsizei levels, GLsizei width, + GLsizei height, GLsizei depth); + + /** * The driver interface for the software rasterizer. * XXX this may go away. |