diff options
Diffstat (limited to 'xc/extras/Mesa/src/swrast_setup/ss_context.c')
-rw-r--r-- | xc/extras/Mesa/src/swrast_setup/ss_context.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/xc/extras/Mesa/src/swrast_setup/ss_context.c b/xc/extras/Mesa/src/swrast_setup/ss_context.c index 58d85faa1..c000e4194 100644 --- a/xc/extras/Mesa/src/swrast_setup/ss_context.c +++ b/xc/extras/Mesa/src/swrast_setup/ss_context.c @@ -1,9 +1,9 @@ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.1 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,11 +23,11 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Authors: - * Keith Whitwell <keithw@valinux.com> + * Keith Whitwell <keith@tungstengraphics.com> */ #include "glheader.h" -#include "mem.h" +#include "imports.h" #include "ss_context.h" #include "ss_triangle.h" #include "ss_vb.h" @@ -97,8 +97,13 @@ static void _swsetup_RenderPrimitive( GLcontext *ctx, GLenum mode ) { SWSETUP_CONTEXT(ctx)->render_prim = mode; + _swrast_render_primitive( ctx, mode ); } +/* + * We patch this function into tnl->Driver.Render.Start. + * It's called when we start rendering a vertex buffer. + */ static void _swsetup_RenderStart( GLcontext *ctx ) { @@ -118,6 +123,10 @@ _swsetup_RenderStart( GLcontext *ctx ) _swrast_render_start( ctx ); } +/* + * We patch this function into tnl->Driver.Render.Finish. + * It's called when we finish rendering a vertex buffer. + */ static void _swsetup_RenderFinish( GLcontext *ctx ) { |