diff options
author | Brian Paul <[email protected]> | 2009-03-13 08:36:51 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-13 08:46:03 -0600 |
commit | 4681a1d1eeb2aa8dfaf3af02c37e9ccd9a523565 (patch) | |
tree | f28f6d7205a98ebb48a8f3b57f2358de0d6b5611 /src/mesa/main/texformat.c | |
parent | 8132405d52f0a631056abff4a98abe0bd0f0608d (diff) |
mesa: added 1D/3D fetch_texel functions for DUDV8
Diffstat (limited to 'src/mesa/main/texformat.c')
-rw-r--r-- | src/mesa/main/texformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/texformat.c b/src/mesa/main/texformat.c index 61a12493a6b..c372b49398a 100644 --- a/src/mesa/main/texformat.c +++ b/src/mesa/main/texformat.c @@ -716,11 +716,11 @@ const struct gl_texture_format _mesa_texformat_dudv8 = { 2, /* TexelBytes */ _mesa_texstore_dudv8, /* StoreTexImageFunc */ NULL, /* FetchTexel1D */ - NULL, /* FetchTexel2D */ + NULL, /* FetchTexel2D */ NULL, /* FetchTexel3D */ - NULL, /* FetchTexel1Df */ + fetch_texel_1d_dudv8, /* FetchTexel1Df */ fetch_texel_2d_dudv8, /* FetchTexel2Df */ - NULL, /* FetchTexel3Df */ + fetch_texel_3d_dudv8, /* FetchTexel3Df */ NULL /* StoreTexel */ }; |