diff options
author | Brian <[email protected]> | 2008-03-13 17:10:28 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-13 17:10:28 -0600 |
commit | d088d640fca415261a208d3cbede94a6522ebb6b (patch) | |
tree | 58c6ff82993089556ed15938c87c4f7201867368 /src/gallium/auxiliary/draw/Makefile | |
parent | 5bae5871f03c96eb173cb55d7e8a846a2c4bd4a0 (diff) |
gallium: plug in vertex passthrough code
Based on a patch from Zack.
Basically, implement a new draw_arrays function that copies the incoming
user-vertices to the hardware vertex buffer, doing format/type conversion
as needed.
The vertex fetch/store code is totally temporary for now.
Diffstat (limited to 'src/gallium/auxiliary/draw/Makefile')
-rw-r--r-- | src/gallium/auxiliary/draw/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/Makefile b/src/gallium/auxiliary/draw/Makefile index 2daa1636f36..21e9f737b77 100644 --- a/src/gallium/auxiliary/draw/Makefile +++ b/src/gallium/auxiliary/draw/Makefile @@ -15,6 +15,7 @@ C_SOURCES = \ draw_debug.c \ draw_flatshade.c \ draw_offset.c \ + draw_passthrough.c \ draw_prim.c \ draw_pstipple.c \ draw_stipple.c \ |