From 610bdf5e9e8a07e4120f0bdff6c2e922f0de679f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 28 Nov 2025 17:56:10 -0500 Subject: [PATCH] mesa: bump MAX_TEXTURE_RECT_SIZE, MAX_RENDERBUFFER_SIZE Reviewed-by: Qiang Yu Part-of: --- src/mesa/main/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index ac69a9f5b2b..583aff10f1f 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -99,7 +99,7 @@ #define MAX_TEXTURE_LEVELS 15 /** Maximum rectangular texture size - GL_NV_texture_rectangle */ -#define MAX_TEXTURE_RECT_SIZE 16384 +#define MAX_TEXTURE_RECT_SIZE 65536 /** * Maximum number of layers in a 1D or 2D array texture - GL_MESA_texture_array @@ -214,7 +214,7 @@ /** For GL_EXT_framebuffer_object */ /*@{*/ #define MAX_COLOR_ATTACHMENTS 8 -#define MAX_RENDERBUFFER_SIZE 16384 +#define MAX_RENDERBUFFER_SIZE 65536 /*@}*/ /** For GL_ATI_envmap_bump - support bump mapping on first 8 units */