Signed-off-by: Samuel Iglesias Gonsálvez <sigles...@igalia.com> --- src/mesa/main/config.h | 5 ----- 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 820ae07..bc5e569 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 26eee28..dbba136 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. */ -- 2.7.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev