diff options
author | Brian Paul <[email protected]> | 2003-04-04 17:17:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-04-04 17:17:50 +0000 |
commit | 738318bb75dea8dac4465f53850987f6062a732d (patch) | |
tree | 870a4e1bb830bd65e3cb829c1eb1ee4d97cbeecb /src/mesa/main/config.h | |
parent | b0e90cc839c6b7fcd3bd76759862eb3bc423e50a (diff) |
Rework gl[Copy]Tex[Sub]Image() error checking so that all level, width, height
and depth checks are done via ctx->Driver.TestProxyTexImage(). This allows
more flexiblity, like supporting larger, non-cubic 3D textures.
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 264b57c279e..85acb0f292f 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,5 +1,3 @@ -/* $Id: config.h,v 1.45 2003/03/29 17:01:03 brianp Exp $ */ - /* * Mesa 3-D graphics library * Version: 5.1 @@ -107,7 +105,7 @@ #define MAX_TEXTURE_LEVELS 12 /* Number of 3D texture mipmap levels */ -#define MAX_3D_TEXTURE_LEVELS 8 +#define MAX_3D_TEXTURE_LEVELS 9 /* Number of cube texture mipmap levels - GL_ARB_texture_cube_map */ #define MAX_CUBE_TEXTURE_LEVELS 12 |