summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/genmipmap.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2014-02-01 08:58:43 -0700
committerBrian Paul <brianp@vmware.com>2014-02-02 06:52:37 -0700
commit3abd4f4d90c5827f74509c1f507ed71aa7be9a15 (patch)
tree5abb0cf06e64c65d63d1b0cbac9b82beda91c940 /src/mesa/main/genmipmap.h
parentbfcb9bb20451aa7c74d8769ae043fb11503e8453 (diff)
downloadexternal_mesa3d-3abd4f4d90c5827f74509c1f507ed71aa7be9a15.zip
external_mesa3d-3abd4f4d90c5827f74509c1f507ed71aa7be9a15.tar.gz
external_mesa3d-3abd4f4d90c5827f74509c1f507ed71aa7be9a15.tar.bz2
mesa: move glGenerateMipmap() code into new genmipmap.c file
Mipmap generation has nothing to do with FBOs. v2: update gl_genexec.py too (not api_exec.c) Acked-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/main/genmipmap.h')
-rw-r--r--src/mesa/main/genmipmap.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mesa/main/genmipmap.h b/src/mesa/main/genmipmap.h
new file mode 100644
index 0000000..d546a8d
--- /dev/null
+++ b/src/mesa/main/genmipmap.h
@@ -0,0 +1,36 @@
+/*
+ * Mesa 3-D graphics library
+ *
+ * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+
+#ifndef GENMIPMAP_H
+#define GENMIPMAP_H
+
+#include "glheader.h"
+
+
+extern void GLAPIENTRY
+_mesa_GenerateMipmap(GLenum target);
+
+
+#endif /* GENMIPMAP_H */