projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c84e96
)
swrast: add missing texfetch table entry for MESA_FORMAT_ARGB2101010_UINT
author
Brian Paul
<brianp@vmware.com>
Mon, 28 Nov 2011 22:03:55 +0000
(15:03 -0700)
committer
Brian Paul
<brianp@vmware.com>
Mon, 28 Nov 2011 22:40:11 +0000
(15:40 -0700)
As with the other integer-valued formats, use NULL until we support
integer textures.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=43316
Tested-by: Vinson Lee <vlee@vmware.com>
Signed-off-by: Brian Paul <brianp@vmware.com>
src/mesa/swrast/s_texfetch.c
patch
|
blob
|
history
diff --git
a/src/mesa/swrast/s_texfetch.c
b/src/mesa/swrast/s_texfetch.c
index
bfa7da7
..
bcd63b6
100644
(file)
--- a/
src/mesa/swrast/s_texfetch.c
+++ b/
src/mesa/swrast/s_texfetch.c
@@
-1260,6
+1260,13
@@
texfetch_funcs[MESA_FORMAT_COUNT] =
fetch_texel_2d_z32f_x24s8,
fetch_texel_3d_z32f_x24s8,
store_texel_z32f_x24s8
+ },
+ {
+ MESA_FORMAT_ARGB2101010_UINT,
+ NULL,
+ NULL,
+ NULL,
+ NULL
}
};