summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv40/nv40_context.c
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/nv40/nv40_context.c
parent0cca90cea1dbe1a76dbf9ac1985c3676ec460b0a (diff)
nouveau: stub set_edgeflags for all nv pipe drivers
Diffstat (limited to 'src/gallium/drivers/nv40/nv40_context.c')
-rw-r--r--src/gallium/drivers/nv40/nv40_context.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv40/nv40_context.c b/src/gallium/drivers/nv40/nv40_context.c
index f9c93f7a2d..f1d4f3c76f 100644
--- a/src/gallium/drivers/nv40/nv40_context.c
+++ b/src/gallium/drivers/nv40/nv40_context.c
@@ -32,6 +32,11 @@ nv40_destroy(struct pipe_context *pipe)
FREE(nv40);
}
+static void
+nv40_set_edgeflags(struct pipe_context *pipe, const unsigned *bitfield)
+{
+}
+
struct pipe_context *
nv40_create(struct pipe_screen *pscreen, unsigned pctx_id)
{
@@ -53,6 +58,7 @@ nv40_create(struct pipe_screen *pscreen, unsigned pctx_id)
nv40->pipe.winsys = ws;
nv40->pipe.screen = pscreen;
nv40->pipe.destroy = nv40_destroy;
+ nv40->pipe.set_edgeflags = nv40_set_edgeflags;
nv40->pipe.draw_arrays = nv40_draw_arrays;
nv40->pipe.draw_elements = nv40_draw_elements;
nv40->pipe.clear = nv40_clear;