diff options
author | Gert Wollny <[email protected]> | 2018-01-18 09:57:29 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-01-19 15:45:57 +0000 |
commit | ea89843b3d31313f3b3e9ddfd6e8744edb7545d6 (patch) | |
tree | 1fa7361844ce316895968da5e011ae742962fc20 /src/mesa/program/arbprogparse.c | |
parent | 81d8a0f4a44f8465e674b880fb8a4fb65320e8cb (diff) |
mesa/program: Fix -Wunused-param warning
v2: Don't annotate, but remove the unused ctx parameter
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/program/arbprogparse.c')
-rw-r--r-- | src/mesa/program/arbprogparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/program/arbprogparse.c b/src/mesa/program/arbprogparse.c index 83a501eea69..7cb1beb5bbb 100644 --- a/src/mesa/program/arbprogparse.c +++ b/src/mesa/program/arbprogparse.c @@ -181,7 +181,7 @@ _mesa_parse_arb_vertex_program(struct gl_context *ctx, GLenum target, return; } - _mesa_optimize_program(ctx, &prog, program); + _mesa_optimize_program(&prog, program); ralloc_free(program->String); |