diff options
author | Brian Paul <[email protected]> | 2011-11-28 15:03:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-28 15:40:11 -0700 |
commit | e32ada1b267c9cc84b84400a619cbca14aba2207 (patch) | |
tree | 816bad043e74117210be24f87c4f58518e0f28fc /src/mesa/swrast/s_texfetch.c | |
parent | 5c84e961e3984ff7116f14a630b2984c5b97413d (diff) |
swrast: add missing texfetch table entry for MESA_FORMAT_ARGB2101010_UINT
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 <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/swrast/s_texfetch.c')
-rw-r--r-- | src/mesa/swrast/s_texfetch.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_texfetch.c b/src/mesa/swrast/s_texfetch.c index bfa7da79d67..bcd63b60273 100644 --- 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 } }; |