summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_simple_shaders.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-03-20 09:11:27 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-03-20 09:11:27 -0600
commit6a9a3afcf923ec5c67069cdb1656f52675cd8ede (patch)
tree08e4c53a9df943d0dbee6a28d5686554aa6e2edb /src/gallium/auxiliary/util/u_simple_shaders.h
parenta88202d3b02a24a3bfff95c5e375ead44dae4c5e (diff)
gallium: added util_make_fragment_passthrough_shader()
Diffstat (limited to 'src/gallium/auxiliary/util/u_simple_shaders.h')
-rw-r--r--src/gallium/auxiliary/util/u_simple_shaders.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_simple_shaders.h b/src/gallium/auxiliary/util/u_simple_shaders.h
index 3ef4f28801..ca219a092c 100644
--- a/src/gallium/auxiliary/util/u_simple_shaders.h
+++ b/src/gallium/auxiliary/util/u_simple_shaders.h
@@ -36,6 +36,11 @@
struct pipe_context;
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
extern void *
util_make_vertex_passthrough_shader(struct pipe_context *pipe,
uint num_attribs,
@@ -47,6 +52,13 @@ extern void *
util_make_fragment_tex_shader(struct pipe_context *pipe);
+extern void *
+util_make_fragment_passthrough_shader(struct pipe_context *pipe);
+
+
+#ifdef __cplusplus
+}
#endif
+#endif