From f782b8189e718974a40d72ac4f6b8d213ca99e1e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 4 Oct 2002 17:37:45 +0000 Subject: multiple GL_POINTS can now be rendered together into one fragment span --- src/mesa/swrast/swrast.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/mesa/swrast/swrast.h') diff --git a/src/mesa/swrast/swrast.h b/src/mesa/swrast/swrast.h index 2d547c889e..1cb55a9d8c 100644 --- a/src/mesa/swrast/swrast.h +++ b/src/mesa/swrast/swrast.h @@ -1,4 +1,4 @@ -/* $Id: swrast.h,v 1.28 2002/10/02 23:24:04 brianp Exp $ */ +/* $Id: swrast.h,v 1.29 2002/10/04 17:37:47 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -205,7 +205,7 @@ do { \ (S).start = 0; \ (S).end = (END); \ (S).facing = 0; \ - (S).array = SWRAST_CONTEXT(ctx)->span_data; \ + (S).array = SWRAST_CONTEXT(ctx)->SpanArrays; \ } while (0) @@ -306,6 +306,9 @@ _swrast_Quad( GLcontext *ctx, extern void _swrast_flush( GLcontext *ctx ); +extern void +_swrast_render_primitive( GLcontext *ctx, GLenum mode ); + extern void _swrast_render_start( GLcontext *ctx ); -- cgit v1.2.3