summaryrefslogtreecommitdiff
path: root/src/mesa/shader/program.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-01-11 15:56:47 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-01-11 15:56:47 +0000
commitcdb65416342d5ca9635685b898c68a76f4a6e862 (patch)
tree3ce9b17870c52ca24f382e4fd0e5a8490a1d0738 /src/mesa/shader/program.h
parent43343913b98d7e113977940bc9c49f9df45add29 (diff)
prototype _mesa_init_ati_fragment_shader()
Diffstat (limited to 'src/mesa/shader/program.h')
-rw-r--r--src/mesa/shader/program.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h
index e8a667ddc63..dcd64adfe9d 100644
--- a/src/mesa/shader/program.h
+++ b/src/mesa/shader/program.h
@@ -1,8 +1,8 @@
/*
* Mesa 3-D graphics library
- * Version: 6.2
+ * Version: 6.3
*
- * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2005 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"),
@@ -74,16 +74,19 @@ _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
extern struct program *
-_mesa_init_vertex_program( GLcontext *ctx,
- struct vertex_program *prog,
- GLenum target,
- GLuint id );
+_mesa_init_vertex_program(GLcontext *ctx,
+ struct vertex_program *prog,
+ GLenum target, GLuint id);
extern struct program *
-_mesa_init_fragment_program( GLcontext *ctx,
- struct fragment_program *prog,
- GLenum target,
- GLuint id );
+_mesa_init_fragment_program(GLcontext *ctx,
+ struct fragment_program *prog,
+ GLenum target, GLuint id);
+
+extern struct program *
+_mesa_init_ati_fragment_shader(GLcontext *ctx,
+ struct ati_fragment_shader *prog,
+ GLenum target, GLuint id );
extern struct program *
_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id);