diff options
author | Brian Paul <[email protected]> | 2009-05-29 08:22:21 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-29 08:22:21 -0600 |
commit | fa0ca31586f2523ac65dbf9c1fdca99dfbca7456 (patch) | |
tree | fb87e7217f50bbce943dbb0bd44b9e003eb747e2 /src/gallium/drivers/softpipe/sp_screen.c | |
parent | 425c39058b54ebbde4130e4eebb1c302005ba6ac (diff) |
softpipe: update comments for max texture size
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 4ead6c928ca..ce6d8ebd12b 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; } |