diff options
author | Joakim Sindholt <[email protected]> | 2011-08-04 15:14:06 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-11-18 02:02:54 +0000 |
commit | fdd96578ef2dfe9c4ad5aab5858036298d444a64 (patch) | |
tree | 3230b0fb321381250a506503825318facb10ca73 /src/gallium/state_trackers/nine/Makefile.sources | |
parent | 7d2573b5376bb4f9ce9a50e0b965e06032b135a9 (diff) |
nine: Add state tracker nine for Direct3D9 (v3)
Work of Joakim Sindholt (zhasha) and Christoph Bumiller (chrisbmr).
DRI3 port done by Axel Davy (mannerov).
v2: - nine_debug.c: klass extended from 32 chars to 96 (for sure) by glennk
- Nine improvements by Axel Davy (which also fixed some wine tests)
- by Emil Velikov:
- convert to static/shared drivers
- Sort and cleanup the includes
- Use AM_CPPFLAGS for the defines
- Add the linker garbage collector
- Restrict the exported symbols (think llvm)
v3: - small nine fixes
- build system improvements by Emil Velikov
v4: [Emil Velikov]
- Do no link against libudev. No longer needed.
Acked-by: Jose Fonseca <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Axel Davy <[email protected]>
Signed-off-by: David Heidelberg <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/Makefile.sources')
-rw-r--r-- | src/gallium/state_trackers/nine/Makefile.sources | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/nine/Makefile.sources b/src/gallium/state_trackers/nine/Makefile.sources new file mode 100644 index 00000000000..b8219613f6c --- /dev/null +++ b/src/gallium/state_trackers/nine/Makefile.sources @@ -0,0 +1,71 @@ +C_SOURCES := \ + adapter9.c \ + adapter9.h \ + authenticatedchannel9.c \ + authenticatedchannel9.h \ + basetexture9.c \ + basetexture9.h \ + cryptosession9.c \ + cryptosession9.h \ + cubetexture9.c \ + cubetexture9.h \ + device9.c \ + device9.h \ + device9ex.c \ + device9ex.h \ + device9video.c \ + device9video.h \ + guid.c \ + guid.h \ + indexbuffer9.c \ + indexbuffer9.h \ + iunknown.c \ + iunknown.h \ + nine_debug.c \ + nine_debug.h \ + nine_defines.h \ + nine_dump.c \ + nine_dump.h \ + nineexoverlayextension.c \ + nineexoverlayextension.h \ + nine_ff.c \ + nine_ff.h \ + nine_helpers.c \ + nine_helpers.h \ + nine_lock.c \ + nine_lock.h \ + nine_pdata.h \ + nine_pipe.c \ + nine_pipe.h \ + nine_quirk.c \ + nine_quirk.h \ + nine_shader.c \ + nine_shader.h \ + nine_state.c \ + nine_state.h \ + pixelshader9.c \ + pixelshader9.h \ + query9.c \ + query9.h \ + resource9.c \ + resource9.h \ + stateblock9.c \ + stateblock9.h \ + surface9.c \ + surface9.h \ + swapchain9.c \ + swapchain9ex.c \ + swapchain9ex.h \ + swapchain9.h \ + texture9.c \ + texture9.h \ + vertexbuffer9.c \ + vertexbuffer9.h \ + vertexdeclaration9.c \ + vertexdeclaration9.h \ + vertexshader9.c \ + vertexshader9.h \ + volume9.c \ + volume9.h \ + volumetexture9.c \ + volumetexture9.h |