llvmpipe: increase max 3D texture size to 256
authorBrian Paul <brianp@vmware.com>
Thu, 24 Sep 2009 22:07:45 +0000 (16:07 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 24 Sep 2009 22:07:45 +0000 (16:07 -0600)
src/gallium/drivers/llvmpipe/lp_screen.c

index ff7ef8658a9a912d6a4b4b61405fecde1f84b72f..05189274589608a2cd95d8965e45e2c00295df59 100644 (file)
@@ -82,7 +82,7 @@ llvmpipe_get_param(struct pipe_screen *screen, int param)
    case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
       return 13; /* max 4Kx4K */
    case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
-      return 8;  /* max 128x128x128 */
+      return 9;  /* max 256x256x256 */
    case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
       return 13; /* max 4Kx4K */
    case PIPE_CAP_TGSI_CONT_SUPPORTED: