diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-07-05 22:40:30 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-07-05 22:40:30 +0000 |
commit | a38e117fe61efeee57adfb142296e213b6ca1ba0 (patch) | |
tree | 5c22b55a6a8f14987156a5127c606ca61f82056d /src/mesa | |
parent | 6479a175e4e633fa15075030b729553a5481c4cb (diff) |
changed MAX_WIDTH to 2048 to handle 2K textures
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 3ccd49614a..0c5f28b355 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.14 2000/05/23 20:10:49 brianp Exp $ */ +/* $Id: config.h,v 1.15 2000/07/05 22:40:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -105,8 +105,8 @@ /* Number of texture units - GL_ARB_multitexture */ #define MAX_TEXTURE_UNITS 2 -/* Maximum viewport size: */ -#define MAX_WIDTH 1600 +/* Maximum viewport/image size: */ +#define MAX_WIDTH 2048 #define MAX_HEIGHT 1200 /* Maxmimum size for CVA. May be overridden by the drivers. */ |