From: Dave Airlie Date: Wed, 14 Jan 2009 05:48:02 +0000 (+1000) Subject: r200: add missing symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4aa874c6368f2485d4ef72e2dc0230b7d443f9f0;p=mesa.git r200: add missing symbols --- diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index ebd49132676..730831db042 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -672,7 +672,7 @@ r200MakeCurrent( __DRIcontextPrivate *driContextPriv, newCtx->radeon.dri.drawable = driDrawPriv; - r200SetCliprects(newCtx); + radeonSetCliprects(&newCtx->radeon); r200UpdateViewportOffset( newCtx->radeon.glCtx ); } diff --git a/src/mesa/drivers/dri/r200/r200_state.h b/src/mesa/drivers/dri/r200/r200_state.h index 5d7347af311..741bf88e9c2 100644 --- a/src/mesa/drivers/dri/r200/r200_state.h +++ b/src/mesa/drivers/dri/r200/r200_state.h @@ -43,8 +43,6 @@ extern void r200InitTnlFuncs( GLcontext *ctx ); extern void r200UpdateMaterial( GLcontext *ctx ); -extern void r200SetCliprects( r200ContextPtr rmesa ); -extern void r200RecalcScissorRects( r200ContextPtr rmesa ); extern void r200UpdateViewportOffset( GLcontext *ctx ); extern void r200UpdateWindow( GLcontext *ctx ); extern void r200UpdateDrawBuffer(GLcontext *ctx);