diff options
author | Eric Anholt <[email protected]> | 2013-02-22 11:46:19 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-03-01 12:10:22 -0800 |
commit | c0674fa5cdb27e367e29e954c03ce1e3f3b5c4a0 (patch) | |
tree | 949a44b32d7fc398ddbb50c806ddc14dc65b0389 /src/mesa/drivers/dri/intel/intel_context.c | |
parent | e15c21a957b62ab856ab286e8253dd1151a3386e (diff) |
intel: Use the new "ctx" local variable I just added some more.
Reviewed-and-tested-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_context.c')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index 653bf47435e..435f0974445 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -991,7 +991,7 @@ intelMakeCurrent(__DRIcontext * driContextPriv, } intel_prepare_render(intel); - _mesa_make_current(&intel->ctx, fb, readFb); + _mesa_make_current(ctx, fb, readFb); intel_gles3_srgb_workaround(intel, ctx->WinSysDrawBuffer); intel_gles3_srgb_workaround(intel, ctx->WinSysReadBuffer); @@ -1000,7 +1000,7 @@ intelMakeCurrent(__DRIcontext * driContextPriv, * is NULL at that point. We can't call _mesa_makecurrent() * first, since we need the buffer size for the initial * viewport. So just call intel_draw_buffer() again here. */ - intel_draw_buffer(&intel->ctx); + intel_draw_buffer(ctx); } else { _mesa_make_current(NULL, NULL, NULL); |