diff options
author | Brian Paul <[email protected]> | 2006-07-20 16:49:57 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-07-20 16:49:57 +0000 |
commit | 122629f27925a9dc50029bebc5079f87f416a7e1 (patch) | |
tree | f8800f9e5f4fff6bbd6c6496d5c74f8685b63372 /src/mesa/main/context.c | |
parent | 459db7bd72131e63ed7687956819c4d0520972dd (diff) |
Some structure renaming. Prefix vertex/fragment-related structs with
"gl_" to match other structs.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 61e1d8794a6..b30d5523623 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -829,7 +829,7 @@ delete_texture_cb(GLuint id, void *data, void *userData) static void delete_program_cb(GLuint id, void *data, void *userData) { - struct program *prog = (struct program *) data; + struct gl_program *prog = (struct gl_program *) data; GLcontext *ctx = (GLcontext *) userData; ctx->Driver.DeleteProgram(ctx, prog); } |