summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-01-31 17:28:08 -0700
committerBrian Paul <[email protected]>2014-02-02 06:52:37 -0700
commitdeb9dd6e27956c2f9d9402fe70f0ca7bfa529450 (patch)
tree7d583badeb04a72cf8a776b2d29cf794bf52f22e /src/mesa/main/dd.h
parentc20b48c48e81159a43941966e35f90f96226d6fb (diff)
mesa: remove target param from ctx->Driver.TexParameter()
Not really used anywhere. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index cb6fac476a0..31d9c482589 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -543,7 +543,7 @@ struct dd_function_table {
void (*TexEnv)(struct gl_context *ctx, GLenum target, GLenum pname,
const GLfloat *param);
/** Set texture parameters */
- void (*TexParameter)(struct gl_context *ctx, GLenum target,
+ void (*TexParameter)(struct gl_context *ctx,
struct gl_texture_object *texObj,
GLenum pname, const GLfloat *params);
/** Set the viewport */