summaryrefslogtreecommitdiff
path: root/src/mesa/main/texformat.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-30 20:47:54 -0600
committerBrian Paul <brianp@vmware.com>2009-09-30 20:47:54 -0600
commit74ae14a2bde4f87a554c3d96e6f4a9a02591308d (patch)
tree01a85af0b3e01979eacf4616d34fc175ad998d6b /src/mesa/main/texformat.h
parent884d1abb2ac1a2ce872a5b09fd4228159defcf26 (diff)
mesa: move texel fetch/store into new texfetch.[ch] files
Diffstat (limited to 'src/mesa/main/texformat.h')
-rw-r--r--src/mesa/main/texformat.h22
1 files changed, 3 insertions, 19 deletions
diff --git a/src/mesa/main/texformat.h b/src/mesa/main/texformat.h
index ed6a3a3851..0711b67da1 100644
--- a/src/mesa/main/texformat.h
+++ b/src/mesa/main/texformat.h
@@ -1,9 +1,9 @@
/*
* Mesa 3-D graphics library
- * Version: 6.5.1
+ * Version: 7.75
*
- * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
- * Copyright (c) 2008 VMware, Inc.
+ * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
+ * Copyright (c) 2008-2009 VMware, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -23,15 +23,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-
-/**
- * \file texformat.h
- * Texture formats definitions.
- *
- * \author Gareth Hughes
- */
-
-
#ifndef TEXFORMAT_H
#define TEXFORMAT_H
@@ -49,11 +40,4 @@ extern void
_mesa_format_to_type_and_comps(gl_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