omit X point/line/triangle routines

This commit is contained in:
Brian 2007-10-31 14:22:49 -06:00
parent 87560bc10f
commit 12f3f6cb2a
3 changed files with 5 additions and 4 deletions

View file

@ -1615,9 +1615,10 @@ XMesaContext XMesaCreateContext( XMesaVisual v, XMesaContext share_list )
tnl->Driver.RunPipeline = _tnl_run_pipeline;
#endif
#if 0
/* swrast setup */
xmesa_register_swrast_functions( mesaCtx );
#endif
st_create_context( mesaCtx,
xmesa_create_softpipe( c ) );

View file

@ -1121,6 +1121,7 @@ xmesa_init_driver_functions( XMesaVisual xmvisual,
_SWRAST_NEW_RASTERMASK)
#if 0
/**
* Extend the software rasterizer with our line/point/triangle
* functions.
@ -1139,3 +1140,4 @@ void xmesa_register_swrast_functions( GLcontext *ctx )
swrast->InvalidateLineMask |= XMESA_NEW_LINE;
swrast->InvalidateTriangleMask |= XMESA_NEW_TRIANGLE;
}
#endif

View file

@ -334,11 +334,9 @@ X11_DRIVER_SOURCES = \
pipe/xlib/xm_api.c \
pipe/xlib/xm_buffer.c \
pipe/xlib/xm_dd.c \
pipe/xlib/xm_line.c \
pipe/xlib/xm_winsys.c \
pipe/xlib/xm_span.c \
pipe/xlib/xm_surface.c \
pipe/xlib/xm_tri.c
pipe/xlib/xm_surface.c
OSMESA_DRIVER_SOURCES = \
drivers/osmesa/osmesa.c