aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-09-29 08:47:56 -0600
committerBrian Paul <[email protected]>2012-10-05 17:13:03 -0600
commit917d27392825719146a02acc684fb75f298f59ed (patch)
tree4609f422ad09a49c2f35ef6011e10a437e811f37 /src/mesa/main
parent4c9042d21dca0be75f196f952a687675c140aac2 (diff)
mesa: remove unused gl_context::DriverCtx field
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/context.c1
-rw-r--r--src/mesa/main/mtypes.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index c50504d1962..e0be048bbfd 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -934,7 +934,6 @@ _mesa_initialize_context(struct gl_context *ctx,
* textures.
*/
ctx->Driver = *driverFunctions;
- ctx->DriverCtx = driverContext;
if (share_list) {
/* share state with another context */
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index e790e18c4a5..40a802f52e6 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -3403,8 +3403,6 @@ struct gl_context
*/
struct dd_function_table Driver;
- void *DriverCtx; /**< Points to device driver context/state */
-
/** Core/Driver constants */
struct gl_constants Const;