diff options
-rw-r--r-- | src/mesa/main/config.h | 5 | ||||
-rw-r--r-- | src/mesa/main/context.c | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 820ae072da6..bc5e56923b8 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -132,11 +132,6 @@ */ #define MAX_TEXTURE_UNITS ((MAX_TEXTURE_COORD_UNITS > MAX_TEXTURE_IMAGE_UNITS) ? MAX_TEXTURE_COORD_UNITS : MAX_TEXTURE_IMAGE_UNITS) - -/** Maximum viewport size */ -#define MAX_VIEWPORT_WIDTH 16384 -#define MAX_VIEWPORT_HEIGHT 16384 - /** Maximun number of viewports supported with ARB_viewport_array */ #define MAX_VIEWPORTS 16 diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 26eee28db4e..dbba136f526 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -582,8 +582,8 @@ _mesa_init_constants(struct gl_constants *consts, gl_api api) consts->MaxLights = MAX_LIGHTS; consts->MaxShininess = 128.0; consts->MaxSpotExponent = 128.0; - consts->MaxViewportWidth = MAX_VIEWPORT_WIDTH; - consts->MaxViewportHeight = MAX_VIEWPORT_HEIGHT; + consts->MaxViewportWidth = 16384; + consts->MaxViewportHeight = 16384; consts->MinMapBufferAlignment = 64; /* Driver must override these values if ARB_viewport_array is supported. */ |