projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38a9714
)
r300g: add Z24X8 to the list of unsupported sampler formats on R3xx-R4xx
author
Marek Olšák
<maraeo@gmail.com>
Sun, 13 Dec 2009 01:19:18 +0000
(
02:19
+0100)
committer
Corbin Simpson
<MostAwesomeDude@gmail.com>
Wed, 16 Dec 2009 03:04:45 +0000
(19:04 -0800)
src/gallium/drivers/r300/r300_screen.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/r300/r300_screen.c
b/src/gallium/drivers/r300/r300_screen.c
index c0d9797020dacb73acd4ff4cd3f2fafc14134168..feb571a23dd762cdf819b129e4a82843a4169f00 100644
(file)
--- a/
src/gallium/drivers/r300/r300_screen.c
+++ b/
src/gallium/drivers/r300/r300_screen.c
@@
-220,12
+220,18
@@
static boolean check_tex_format(enum pipe_format format, uint32_t usage,
/* Z buffer or texture */
case PIPE_FORMAT_Z16_UNORM:
+ retval = usage &
+ (PIPE_TEXTURE_USAGE_DEPTH_STENCIL |
+ PIPE_TEXTURE_USAGE_SAMPLER);
+ break;
+
+ /* 24bit Z buffer can only be used as a texture on R500. */
case PIPE_FORMAT_Z24X8_UNORM:
/* Z buffer with stencil or texture */
case PIPE_FORMAT_Z24S8_UNORM:
retval = usage &
(PIPE_TEXTURE_USAGE_DEPTH_STENCIL |
-
PIPE_TEXTURE_USAGE_SAMPLER
);
+
(is_r500 ? PIPE_TEXTURE_USAGE_SAMPLER : 0)
);
break;
/* Definitely unsupported formats. */