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/SConscript | |
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/SConscript')
-rw-r--r-- | src/gallium/auxiliary/draw/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/SConscript b/src/gallium/auxiliary/draw/SConscript index 5cb7664c85d..64b444dbd56 100644 --- a/src/gallium/auxiliary/draw/SConscript +++ b/src/gallium/auxiliary/draw/SConscript @@ -15,6 +15,7 @@ draw = env.ConvenienceLibrary( 'draw_flatshade.c', 'draw_offset.c', 'draw_prim.c', + 'draw_passthrough.c', 'draw_pstipple.c', 'draw_passthrough.c', 'draw_stipple.c', |