diff options
author | José Fonseca <[email protected]> | 2009-07-27 01:23:15 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:16 +0100 |
commit | 8783732c4d2b9162d996f678eb41e3eae3ac86c7 (patch) | |
tree | 331d43c48d525e55a2f5e859a3a59771fb0fe3c0 /src/gallium/drivers/llvmpipe/Makefile | |
parent | 15422b2d99be074e1d6ac064b6f791245975da83 (diff) |
llvmpipe: Pixel packing/unpacking and loop code generators.
Just a small proof of concept plus a standalone test app. Not integrated
with the rest of the driver yet.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/Makefile')
-rw-r--r-- | src/gallium/drivers/llvmpipe/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile index c0c430628d4..a6556c57825 100644 --- a/src/gallium/drivers/llvmpipe/Makefile +++ b/src/gallium/drivers/llvmpipe/Makefile @@ -7,6 +7,9 @@ C_SOURCES = \ lp_fs_exec.c \ lp_fs_sse.c \ lp_fs_llvm.c \ + lp_bld_pack.c \ + lp_bld_unpack.c \ + lp_bld_loop.c \ lp_clear.c \ lp_flush.c \ lp_query.c \ |