summaryrefslogtreecommitdiff
path: root/src/mesa/main/texformat.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-27 18:09:23 -0600
committerBrian Paul <brianp@vmware.com>2009-09-27 18:09:23 -0600
commitda5722bea6e2f613933d3e3da214da8cd0047d2e (patch)
tree103d2d4d57ae83458fcbf2ae2d996f86d6faf198 /src/mesa/main/texformat.h
parent7116ae857c6ef3809c712e96b28bd69d92b3cd33 (diff)
mesa: use new look-up table to get texel fetch/store funcs
Diffstat (limited to 'src/mesa/main/texformat.h')
-rw-r--r--src/mesa/main/texformat.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/texformat.h b/src/mesa/main/texformat.h
index b860a10d86..39d5ec640a 100644
--- a/src/mesa/main/texformat.h
+++ b/src/mesa/main/texformat.h
@@ -154,5 +154,11 @@ extern void
_mesa_format_to_type_and_comps(const struct gl_texture_format *format,
GLenum *datatype, GLuint *comps);
+extern FetchTexelFuncF
+_mesa_get_texel_fetch_func(GLuint format, GLuint dims);
+
+extern StoreTexelFunc
+_mesa_get_texel_store_func(GLuint format);
+
#endif