summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv50/nv50_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/nv50/nv50_context.c
parent0cca90cea1dbe1a76dbf9ac1985c3676ec460b0a (diff)
nouveau: stub set_edgeflags for all nv pipe drivers
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.c')
-rw-r--r--src/gallium/drivers/nv50/nv50_context.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c
index e822d86394..6eb1878b84 100644
--- a/src/gallium/drivers/nv50/nv50_context.c
+++ b/src/gallium/drivers/nv50/nv50_context.c
@@ -24,6 +24,12 @@ nv50_destroy(struct pipe_context *pipe)
free(nv50);
}
+
+static void
+nv50_set_edgeflags(struct pipe_context *pipe, const unsigned *bitfield)
+{
+}
+
struct pipe_context *
nv50_create(struct pipe_screen *pscreen, unsigned pctx_id)
{
@@ -42,6 +48,7 @@ nv50_create(struct pipe_screen *pscreen, unsigned pctx_id)
nv50->pipe.destroy = nv50_destroy;
+ nv50->pipe.set_edgeflags = nv50_set_edgeflags;
nv50->pipe.draw_arrays = nv50_draw_arrays;
nv50->pipe.draw_elements = nv50_draw_elements;
nv50->pipe.clear = nv50_clear;