diff options
author | Keith Whitwell <[email protected]> | 2009-08-14 13:41:57 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-08-14 17:42:27 +0100 |
commit | 9616e4ad1c055d8ff9ab671914f97e402d0aa4b0 (patch) | |
tree | 0db434b291b0cb1241f029a685e202bc17c74cb5 /src/gallium/state_trackers/dri/dri_context.c | |
parent | 442a5e434381987a426192e2b7d34847de50a0ed (diff) |
st/dri: remove unused dummyContext value
Diffstat (limited to 'src/gallium/state_trackers/dri/dri_context.c')
-rw-r--r-- | src/gallium/state_trackers/dri/dri_context.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gallium/state_trackers/dri/dri_context.c b/src/gallium/state_trackers/dri/dri_context.c index 6c617197eca..830e511fefd 100644 --- a/src/gallium/state_trackers/dri/dri_context.c +++ b/src/gallium/state_trackers/dri/dri_context.c @@ -109,9 +109,6 @@ dri_destroy_context(__DRIcontextPrivate * cPriv) */ st_flush(ctx->st, 0, NULL); - if (screen->dummyContext == ctx) - screen->dummyContext = NULL; - /* Also frees ctx->pipe? */ st_destroy_context(ctx->st); @@ -153,11 +150,6 @@ dri_make_current(__DRIcontextPrivate * cPriv, ++ctx->bind_count; - /* This is for situations in which we need a rendering context but - * there may not be any currently bound. - */ - screen->dummyContext = ctx; - if (ctx->dPriv != driDrawPriv) { ctx->dPriv = driDrawPriv; ctx->d_stamp = driDrawPriv->lastStamp - 1; |