diff options
author | Brian Paul <[email protected]> | 2006-10-15 18:18:39 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-15 18:18:39 +0000 |
commit | 2b6d2e4dcbdc253e8148888d1a7e60d8466ba4e8 (patch) | |
tree | b5bee10a175f14db226a4635a3bd8320a361b269 /src/mesa/drivers/dri/gamma | |
parent | b947377add2edb87fc78dcd853cdf00a2119bb3e (diff) |
Remove Driver.ResizeBuffers = _mesa_resize_framebuffer lines.
This is already done by the preceeding call to _mesa_init_driver_functions()
which plugs in default functions like that.
Diffstat (limited to 'src/mesa/drivers/dri/gamma')
-rw-r--r-- | src/mesa/drivers/dri/gamma/gamma_dd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/gamma/gamma_dd.c b/src/mesa/drivers/dri/gamma/gamma_dd.c index cca382d8926..8479eb3bba5 100644 --- a/src/mesa/drivers/dri/gamma/gamma_dd.c +++ b/src/mesa/drivers/dri/gamma/gamma_dd.c @@ -105,7 +105,6 @@ void gammaDDInitExtensions( GLcontext *ctx ) void gammaDDInitDriverFuncs( GLcontext *ctx ) { ctx->Driver.GetBufferSize = gammaDDGetBufferSize; - ctx->Driver.ResizeBuffers = _swrast_alloc_buffers; ctx->Driver.GetString = gammaDDGetString; ctx->Driver.Error = NULL; @@ -117,7 +116,6 @@ void gammaDDInitDriverFuncs( GLcontext *ctx ) ctx->Driver.CopyPixels = _swrast_CopyPixels; ctx->Driver.DrawPixels = _swrast_DrawPixels; ctx->Driver.ReadPixels = _swrast_ReadPixels; - ctx->Driver.ResizeBuffers = _swrast_alloc_buffers; /* Swrast hooks for imaging extensions: */ |