gallium: added util_make_fragment_passthrough_shader()

This commit is contained in:
Brian
2008-03-20 09:11:27 -06:00
parent a88202d3b0
commit 6a9a3afcf9
2 changed files with 107 additions and 0 deletions

View File

@@ -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