diff options
author | Ben Skeggs <[email protected]> | 2008-04-28 15:42:19 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-04-28 19:25:40 +1000 |
commit | 58b1bcaa094ed07a54bd7e4cdbddbcdcf1f629a7 (patch) | |
tree | 49e9b1ec370994abc3f691ef6946a053ab238763 /src/gallium/drivers/nv40/nv40_context.c | |
parent | 2193578851b3b5a99c078b28187cf3158f4218f6 (diff) |
nv40: do full swtnl fallback when edge flags present.
This isn't necessary, with some effort we can do this on the hw. However,
until I encounter something "real" that uses them there's not a lot of
point.
Diffstat (limited to 'src/gallium/drivers/nv40/nv40_context.c')
-rw-r--r-- | src/gallium/drivers/nv40/nv40_context.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/nv40/nv40_context.c b/src/gallium/drivers/nv40/nv40_context.c index f1d4f3c76f1..f9c93f7a2d7 100644 --- a/src/gallium/drivers/nv40/nv40_context.c +++ b/src/gallium/drivers/nv40/nv40_context.c @@ -32,11 +32,6 @@ 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) { @@ -58,7 +53,6 @@ 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; |