diff options
author | Daniel Borca <[email protected]> | 2004-02-10 07:46:07 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-02-10 07:46:07 +0000 |
commit | 22633805fa4edf5771a4aa951de947e3346f76be (patch) | |
tree | d42f839120616b2dcce246ed260da3d16168f3bd /src/mesa/drivers/glide/fxapi.c | |
parent | a1b9b1a4409729fa8b6714e5847544576fcee404 (diff) |
fixed back fxMesaGetCurrentContext to match MakeCurrent
Diffstat (limited to 'src/mesa/drivers/glide/fxapi.c')
-rw-r--r-- | src/mesa/drivers/glide/fxapi.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c index 61c69853e6a..8ffa36c9c36 100644 --- a/src/mesa/drivers/glide/fxapi.c +++ b/src/mesa/drivers/glide/fxapi.c @@ -147,10 +147,9 @@ GLint GLAPIENTRY fxMesaSelectCurrentBoard (int n) } -void * GLAPIENTRY fxMesaGetCurrentContext (void) +fxMesaContext GLAPIENTRY fxMesaGetCurrentContext (void) { - GET_CURRENT_CONTEXT(ctx); - return ctx; + return fxMesaCurrentCtx; } |