summaryrefslogtreecommitdiff
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorBrian <brian@nostromo.localnet.net>2007-02-25 18:35:47 -0700
committerBrian <brian@nostromo.localnet.net>2007-02-25 18:35:47 -0700
commit21bcb2e1f64fe7161e05e4dbb7bea5609ba30e2a (patch)
tree08900a413cd3db4221b89308bfa181962d5b12d2 /src/mesa/main/dd.h
parentcfd0011f2fe3aad2ea0f66c151b3fb12d05f644e (diff)
s/GetFragmentProgramRegister/GetProgramRegister/
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 90c1f69c3d..88f33943b3 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -570,9 +570,9 @@ struct dd_function_table {
/** Notify driver that a program string has been specified. */
void (*ProgramStringNotify)(GLcontext *ctx, GLenum target,
struct gl_program *prog);
- /** Get value of a fragment program register during program execution. */
- void (*GetFragmentProgramRegister)(GLcontext *ctx, enum register_file file,
- GLuint index, GLfloat val[4]);
+ /** Get value of a program register during program execution. */
+ void (*GetProgramRegister)(GLcontext *ctx, enum register_file file,
+ GLuint index, GLfloat val[4]);
/** Query if program can be loaded onto hardware */
GLboolean (*IsProgramNative)(GLcontext *ctx, GLenum target,