diff options
author | Brian Paul <[email protected]> | 2008-09-26 09:38:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-09-26 10:15:35 -0600 |
commit | 164fb1299e1614ce05ae539d832567469eedb402 (patch) | |
tree | 139284449776638aa2d0372eb6c36d7ec7f333a2 /src/gallium/drivers/cell/spu/Makefile | |
parent | f5127909fb0386c2c11a2c26886eb02808ed514e (diff) |
cell: checkpoint: support for function calls in SPU shaders
Will be used for instructions like SIN/COS/POW/TEX/etc. The PPU needs to
know the address of some functions in the SPU address space. Send that
info to the PPU/main memory rather than patch up shaders on the SPU side.
Not finished/tested yet...
Diffstat (limited to 'src/gallium/drivers/cell/spu/Makefile')
-rw-r--r-- | src/gallium/drivers/cell/spu/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/spu/Makefile b/src/gallium/drivers/cell/spu/Makefile index 1ae0dfb8c10..c2db85247e0 100644 --- a/src/gallium/drivers/cell/spu/Makefile +++ b/src/gallium/drivers/cell/spu/Makefile @@ -16,8 +16,9 @@ PROG_SPU_EMBED_O = $(PROG)_spu-embed.o SOURCES = \ - spu_main.c \ + spu_funcs.c \ spu_dcache.c \ + spu_main.c \ spu_per_fragment_op.c \ spu_render.c \ spu_texture.c \ |