summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2008-04-27 18:12:14 +1000
committerBen Skeggs <skeggsb@gmail.com>2008-04-27 18:12:14 +1000
commit2193578851b3b5a99c078b28187cf3158f4218f6 (patch)
tree66b3373ea95a8b0e2ce5c47192948a42232b69aa /src/gallium/drivers/nv30
parent0cca90cea1dbe1a76dbf9ac1985c3676ec460b0a (diff)
nouveau: stub set_edgeflags for all nv pipe drivers
Diffstat (limited to 'src/gallium/drivers/nv30')
-rw-r--r--src/gallium/drivers/nv30/nv30_context.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv30/nv30_context.c b/src/gallium/drivers/nv30/nv30_context.c
index 57b0e71dad..4b0892971e 100644
--- a/src/gallium/drivers/nv30/nv30_context.c
+++ b/src/gallium/drivers/nv30/nv30_context.c
@@ -32,6 +32,12 @@ nv30_destroy(struct pipe_context *pipe)
FREE(nv30);
}
+
+static void
+nv30_set_edgeflags(struct pipe_context *pipe, const unsigned *bitfield)
+{
+}
+
struct pipe_context *
nv30_create(struct pipe_screen *pscreen, unsigned pctx_id)
{
@@ -53,6 +59,7 @@ nv30_create(struct pipe_screen *pscreen, unsigned pctx_id)
nv30->pipe.winsys = ws;
nv30->pipe.screen = pscreen;
nv30->pipe.destroy = nv30_destroy;
+ nv30->pipe.set_edgeflags = nv30_set_edgeflags;
nv30->pipe.draw_arrays = nv30_draw_arrays;
nv30->pipe.draw_elements = nv30_draw_elements;
nv30->pipe.clear = nv30_clear;