Skip to content
Snippets Groups Projects
Commit 1730b8db authored by Vinson Lee's avatar Vinson Lee Committed by Brian Paul
Browse files

softpipe: Increase GL_MAX_3D_TEXTURE_SIZE to 256.

parent 60b152a1
No related merge requests found
......@@ -84,7 +84,7 @@ softpipe_get_param(struct pipe_screen *screen, int param)
case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
return 12; /* max 2Kx2K */
case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
return 8; /* max 128x128x128 */
return 9; /* max 256x256x256 */
case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
return 12; /* max 2Kx2K */
case PIPE_CAP_TGSI_CONT_SUPPORTED:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment