From: Brian Paul Date: Mon, 5 Sep 2005 21:09:22 +0000 (+0000) Subject: make r128SpanRenderStart/Finish static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6575e37cbf222c4f2fe7cb59fc1bb13b245d12fc;p=mesa.git make r128SpanRenderStart/Finish static --- diff --git a/src/mesa/drivers/dri/r128/r128_span.c b/src/mesa/drivers/dri/r128/r128_span.c index d204f4de92c..76f80efb778 100644 --- a/src/mesa/drivers/dri/r128/r128_span.c +++ b/src/mesa/drivers/dri/r128/r128_span.c @@ -261,7 +261,8 @@ do { \ /* FIXME: Add support for hardware stencil buffers. */ -void r128SpanRenderStart( GLcontext *ctx ) +static void +r128SpanRenderStart( GLcontext *ctx ) { r128ContextPtr rmesa = R128_CONTEXT(ctx); FLUSH_BATCH(rmesa); @@ -269,7 +270,8 @@ void r128SpanRenderStart( GLcontext *ctx ) r128WaitForIdleLocked( rmesa ); } -void r128SpanRenderFinish( GLcontext *ctx ) +static void +r128SpanRenderFinish( GLcontext *ctx ) { r128ContextPtr rmesa = R128_CONTEXT(ctx); _swrast_flush( ctx );