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/nv10/nv10_context.c | |
parent | 0cca90cea1dbe1a76dbf9ac1985c3676ec460b0a (diff) |
nouveau: stub set_edgeflags for all nv pipe drivers
Diffstat (limited to 'src/gallium/drivers/nv10/nv10_context.c')
-rw-r--r-- | src/gallium/drivers/nv10/nv10_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv10/nv10_context.c b/src/gallium/drivers/nv10/nv10_context.c index bbd307d5d98..a25c082a5d1 100644 --- a/src/gallium/drivers/nv10/nv10_context.c +++ b/src/gallium/drivers/nv10/nv10_context.c @@ -253,6 +253,11 @@ static void nv10_init_hwctx(struct nv10_context *nv10) FIRE_RING (NULL); } +static void +nv10_set_edgeflags(struct pipe_context *pipe, const unsigned *bitfield) +{ +} + struct pipe_context * nv10_create(struct pipe_screen *pscreen, unsigned pctx_id) { @@ -274,6 +279,7 @@ nv10_create(struct pipe_screen *pscreen, unsigned pctx_id) nv10->pipe.winsys = ws; nv10->pipe.screen = pscreen; nv10->pipe.destroy = nv10_destroy; + nv10->pipe.set_edgeflags = nv10_set_edgeflags; nv10->pipe.draw_arrays = nv10_draw_arrays; nv10->pipe.draw_elements = nv10_draw_elements; nv10->pipe.clear = nv10_clear; |