diff options
author | José Fonseca <[email protected]> | 2009-10-29 20:03:51 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-10-29 20:03:51 +0000 |
commit | c6164ff155189007c02aabb31549f5f4dc767d1b (patch) | |
tree | 95aaca8c946d10829e099161f089cf060ef851ee /src/mesa/main/texfetch.c | |
parent | a7fa56a64b8963e74e93f3bac8ac80813f4a9778 (diff) |
mesa: Add MESA_FORMAT_Z24_X8.
Diffstat (limited to 'src/mesa/main/texfetch.c')
-rw-r--r-- | src/mesa/main/texfetch.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/texfetch.c b/src/mesa/main/texfetch.c index e6e28aef196..314ccb7b65f 100644 --- a/src/mesa/main/texfetch.c +++ b/src/mesa/main/texfetch.c @@ -530,6 +530,13 @@ texfetch_funcs[MESA_FORMAT_COUNT] = store_texel_s8_z24 }, { + MESA_FORMAT_Z24_X8, + fetch_texel_1d_f_z24_s8, + fetch_texel_2d_f_z24_s8, + fetch_texel_3d_f_z24_s8, + store_texel_z24_s8 + }, + { MESA_FORMAT_Z32, fetch_texel_1d_f_z32, fetch_texel_2d_f_z32, |