projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b70fcd6
)
softpipe: increase max 2D/cube texture size to 4K x 4K
author
Brian Paul
<brianp@vmware.com>
Fri, 29 May 2009 06:55:54 +0000
(
00:55
-0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 29 May 2009 06:55:54 +0000
(
00:55
-0600)
src/gallium/drivers/softpipe/sp_screen.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/softpipe/sp_screen.c
b/src/gallium/drivers/softpipe/sp_screen.c
index a32fd3a1ba0d46624a102b1a6693daa831ab6e81..4ead6c928caa997d6cc7b41ad91ac7a9e6c37d1d 100644
(file)
--- 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 1
2
; /* max 2Kx2K */
+ return 1
3
; /* max 2Kx2K */
case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
return 8; /* max 128x128x128 */
case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
- return 1
2
; /* max 2Kx2K */
+ return 1
3
; /* max 2Kx2K */
default:
return 0;
}