From: Brian Paul Date: Wed, 5 Jul 2000 22:40:30 +0000 (+0000) Subject: changed MAX_WIDTH to 2048 to handle 2K textures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a38e117fe61efeee57adfb142296e213b6ca1ba0;p=mesa.git changed MAX_WIDTH to 2048 to handle 2K textures --- diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 3ccd49614ac..0c5f28b355c 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. */