summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_pipe_vertex.c
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2009-12-22 21:26:51 +0100
committerRoland Scheidegger <sroland@vmware.com>2009-12-22 21:26:51 +0100
commitd186079520234a776c3fa88c81da935d65981fec (patch)
tree63ad08fcb062a17fc1589ad928a611130a4264c6 /src/gallium/drivers/i965/brw_pipe_vertex.c
parent35e8283c69d80debb44b05ea79dc5f67303a7432 (diff)
i965g: fix for edgeflag changes (untested)
Diffstat (limited to 'src/gallium/drivers/i965/brw_pipe_vertex.c')
-rw-r--r--src/gallium/drivers/i965/brw_pipe_vertex.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/drivers/i965/brw_pipe_vertex.c b/src/gallium/drivers/i965/brw_pipe_vertex.c
index 3d87a2853f..e3c48e3149 100644
--- a/src/gallium/drivers/i965/brw_pipe_vertex.c
+++ b/src/gallium/drivers/i965/brw_pipe_vertex.c
@@ -44,19 +44,12 @@ static void brw_set_vertex_buffers(struct pipe_context *pipe,
brw->state.dirty.mesa |= PIPE_NEW_VERTEX_BUFFER;
}
-static void brw_set_edgeflags( struct pipe_context *pipe,
- const unsigned *bitfield )
-{
- /* XXX */
-}
-
void
brw_pipe_vertex_init( struct brw_context *brw )
{
brw->base.set_vertex_buffers = brw_set_vertex_buffers;
brw->base.set_vertex_elements = brw_set_vertex_elements;
- brw->base.set_edgeflags = brw_set_edgeflags;
}