summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple/brw_draw.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-12-11 17:07:31 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2007-12-11 17:10:48 +0000
commitb247ab036327d66b8b9b1aff2dbcf4520ed0284f (patch)
tree6512cfd4452795539115f22f7fc240002db5de9d /src/mesa/pipe/i965simple/brw_draw.c
parentecb5e14e8688e31446fdcbdea59d25ea628fb211 (diff)
965: remove duplicate brw_draw functions, make init a bit cleaner
Diffstat (limited to 'src/mesa/pipe/i965simple/brw_draw.c')
-rw-r--r--src/mesa/pipe/i965simple/brw_draw.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/pipe/i965simple/brw_draw.c b/src/mesa/pipe/i965simple/brw_draw.c
index 8b92f11280..f443f41c6f 100644
--- a/src/mesa/pipe/i965simple/brw_draw.c
+++ b/src/mesa/pipe/i965simple/brw_draw.c
@@ -226,13 +226,10 @@ static boolean brw_draw_arrays( struct pipe_context *pipe,
-void brw_draw_init( struct brw_context *brw )
+void brw_init_draw_functions( struct brw_context *brw )
{
brw->pipe.draw_arrays = brw_draw_arrays;
brw->pipe.draw_elements = brw_draw_elements;
}
-void brw_draw_destroy( struct brw_context *brw )
-{
-}