diff options
author | Ben Skeggs <[email protected]> | 2008-04-27 18:12:14 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-04-27 18:12:14 +1000 |
commit | 2193578851b3b5a99c078b28187cf3158f4218f6 (patch) | |
tree | 66b3373ea95a8b0e2ce5c47192948a42232b69aa /src/gallium/drivers/nv50/nv50_context.c | |
parent | 0cca90cea1dbe1a76dbf9ac1985c3676ec460b0a (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.c | 7 |
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 e822d863945..6eb1878b847 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; |