diff options
author | Brian Paul <[email protected]> | 2011-03-10 09:44:30 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-03-10 09:44:32 -0700 |
commit | 7dcf019af2e76a4c6e0391c3c5e1d50966367df8 (patch) | |
tree | b4b088c9257535d9cc4a1bb1a068cd791f21eb1b /src/gallium/auxiliary/Makefile | |
parent | 0eab3a8a976ea282063710d5aa7d1709abc182c5 (diff) |
gallium/util: new polygon stipple utility helper
The polygon stipple fallback does not have to be implemented in the
draw module (it doesn't need window coords, etc). Drivers can use
this utility and avoid sw vertex fallbacks if pstipple is enabled.
Note: this is WIP and not used by any driver yet.
Diffstat (limited to 'src/gallium/auxiliary/Makefile')
-rw-r--r-- | src/gallium/auxiliary/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile b/src/gallium/auxiliary/Makefile index 59e2f5bc9c2..7b748fa29e7 100644 --- a/src/gallium/auxiliary/Makefile +++ b/src/gallium/auxiliary/Makefile @@ -131,6 +131,7 @@ C_SOURCES = \ util/u_network.c \ util/u_math.c \ util/u_mm.c \ + util/u_pstipple.c \ util/u_rect.c \ util/u_ringbuffer.c \ util/u_sampler.c \ |