From: Brian Paul Date: Fri, 29 May 2009 14:22:21 +0000 (-0600) Subject: softpipe: update comments for max texture size X-Git-Tag: 062012170305~17489^2~136 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa0ca31586f2523ac65dbf9c1fdca99dfbca7456;p=profile%2Fivi%2Fmesa.git softpipe: update comments for max texture size --- diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 4ead6c92..ce6d8eb 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -82,11 +82,11 @@ softpipe_get_param(struct pipe_screen *screen, int param) case PIPE_CAP_TEXTURE_SHADOW_MAP: return 1; case PIPE_CAP_MAX_TEXTURE_2D_LEVELS: - return 13; /* max 2Kx2K */ + return 13; /* max 4Kx4K */ case PIPE_CAP_MAX_TEXTURE_3D_LEVELS: return 8; /* max 128x128x128 */ case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS: - return 13; /* max 2Kx2K */ + return 13; /* max 4Kx4K */ default: return 0; }