diff options
author | Brian Paul <[email protected]> | 2005-09-07 23:26:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-07 23:26:01 +0000 |
commit | 526242614fd5200def246e1bbb9dca78020abc32 (patch) | |
tree | 1a707036f3cd68e57aeb1c5048aff68cad5214ac /src/mesa/drivers/svga | |
parent | ab8ef280ec1c435cd04a481f50cbc3cb6b024744 (diff) |
some updates, but code still out of date
Diffstat (limited to 'src/mesa/drivers/svga')
-rw-r--r-- | src/mesa/drivers/svga/svgamesa.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/mesa/drivers/svga/svgamesa.c b/src/mesa/drivers/svga/svgamesa.c index 7e783b540b4..09330e78ab5 100644 --- a/src/mesa/drivers/svga/svgamesa.c +++ b/src/mesa/drivers/svga/svgamesa.c @@ -1,4 +1,4 @@ -/* $Id: svgamesa.c,v 1.25 2004/11/29 17:30:21 brianp Exp $ */ +/* $Id: svgamesa.c,v 1.26 2005/09/07 23:26:01 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -263,18 +263,8 @@ static void svgamesa_update_state( GLcontext *ctx, GLuint new_state ) ctx->Driver.UpdateState = svgamesa_update_state; ctx->Driver.GetBufferSize = get_buffer_size; - ctx->Driver.ResizeBuffers = _swrast_alloc_buffers; ctx->Driver.Viewport = viewport; - /* Software rasterizer pixel paths: - */ - ctx->Driver.Accum = _swrast_Accum; - ctx->Driver.Bitmap = _swrast_Bitmap; - ctx->Driver.CopyPixels = _swrast_CopyPixels; - ctx->Driver.DrawPixels = _swrast_DrawPixels; - ctx->Driver.ReadPixels = _swrast_ReadPixels; - ctx->Driver.DrawBuffer = _swrast_DrawBuffer; - /* Fill in the swrast driver interface: */ swdd->SetBuffer = set_buffer; @@ -413,6 +403,8 @@ SVGAMesaContext SVGAMesaCreateContext( GLboolean doubleBuffer ) _mesa_enable_sw_extensions(ctx->gl_ctx); _mesa_enable_1_3_extensions(ctx->gl_ctx); + _mesa_init_driver_functions(&ctx->Driver); + ctx->gl_buffer = _mesa_create_framebuffer( ctx->gl_vis, ctx->gl_vis->depthBits > 0, ctx->gl_vis->stencilBits > 0, |