2009-01-14 23:48:15 -07:00
|
|
|
# -*- python -*-
|
2008-09-21 13:54:29 -06:00
|
|
|
|
2008-07-20 05:02:41 -06:00
|
|
|
Import('env')
|
|
|
|
|
2008-08-26 16:28:42 -06:00
|
|
|
files = [
|
2009-09-13 03:23:30 -06:00
|
|
|
'VideoConfig.cpp',
|
2009-06-22 03:31:30 -06:00
|
|
|
'BPMemory.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'CPMemory.cpp',
|
2009-02-28 15:10:38 -07:00
|
|
|
'XFMemory.cpp',
|
|
|
|
'XFStructs.cpp',
|
2009-06-22 03:31:30 -06:00
|
|
|
'BPStructs.cpp',
|
2009-10-10 15:19:39 -06:00
|
|
|
'CommandProcessor.cpp',
|
|
|
|
'PixelEngine.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'memcpy_amd.cpp',
|
2008-12-25 13:11:42 -07:00
|
|
|
'OpcodeDecoding.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'TextureDecoder.cpp',
|
|
|
|
'XFMemory.cpp',
|
|
|
|
'XFBConvert.cpp',
|
2009-02-28 15:10:38 -07:00
|
|
|
'IndexGenerator.cpp',
|
2008-12-26 10:33:53 -07:00
|
|
|
'PixelShaderGen.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'PixelShaderManager.cpp',
|
2008-12-26 10:33:53 -07:00
|
|
|
'VertexShaderGen.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'VertexShaderManager.cpp',
|
|
|
|
'VertexLoader.cpp',
|
|
|
|
'VertexLoader_Color.cpp',
|
|
|
|
'VertexLoader_Normal.cpp',
|
|
|
|
'VertexLoader_Position.cpp',
|
|
|
|
'VertexLoader_TextCoord.cpp',
|
2009-09-03 13:24:16 -06:00
|
|
|
'TextureConversionShader.cpp',
|
2008-12-26 06:19:27 -07:00
|
|
|
'ImageWrite.cpp',
|
|
|
|
'NativeVertexWriter.cpp',
|
|
|
|
'Statistics.cpp',
|
|
|
|
'Fifo.cpp',
|
|
|
|
'VideoState.cpp',
|
|
|
|
'Profiler.cpp',
|
2009-09-03 14:37:35 -06:00
|
|
|
'OnScreenDisplay.cpp',
|
2009-05-07 01:43:56 -06:00
|
|
|
'HiresTextures.cpp',
|
2008-08-26 16:28:42 -06:00
|
|
|
]
|
2008-07-20 05:02:41 -06:00
|
|
|
|
2010-06-10 08:18:21 -06:00
|
|
|
if env['HAVE_OPENCL']:
|
2009-09-30 00:49:08 -06:00
|
|
|
files += [
|
2009-10-07 15:30:36 -06:00
|
|
|
'OpenCL/OCLTextureDecoder.cpp',
|
2009-09-30 00:49:08 -06:00
|
|
|
]
|
|
|
|
|
2010-06-10 08:18:21 -06:00
|
|
|
env.StaticLibrary(env['local_libs'] + "videocommon", files)
|