projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec78445
)
Revert "nouveau: nv30: Disable swizzled surface usage if any dimension is 1 (Warsow...
author
Patrice Mandin
<patmandin@gmail.com>
Sat, 12 Dec 2009 22:15:08 +0000
(23:15 +0100)
committer
Patrice Mandin
<patmandin@gmail.com>
Sat, 12 Dec 2009 22:15:08 +0000
(23:15 +0100)
This reverts commit
ec7844537ecdb0b598447e37bf0b7120acd029f3
.
src/gallium/drivers/nv30/nv30_miptree.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/nv30/nv30_miptree.c
b/src/gallium/drivers/nv30/nv30_miptree.c
index fd7c65f6b37aaa663c6059a25a27566624e955e5..920fe64c32f804ec51746dd63294146db4d9fb10 100644
(file)
--- a/
src/gallium/drivers/nv30/nv30_miptree.c
+++ b/
src/gallium/drivers/nv30/nv30_miptree.c
@@
-72,9
+72,6
@@
nv30_miptree_create(struct pipe_screen *pscreen, const struct pipe_texture *pt)
mt->base.screen = pscreen;
/* Swizzled textures must be POT */
- if ((pt->width0 == 1) || (pt->height0 == 1)) {
- mt->base.tex_usage |= NOUVEAU_TEXTURE_USAGE_LINEAR;
- } else
if (pt->width0 & (pt->width0 - 1) ||
pt->height0 & (pt->height0 - 1))
mt->base.tex_usage |= NOUVEAU_TEXTURE_USAGE_LINEAR;