Files
mesa/src/gallium/drivers/trace/SConscript
T
José Fonseca f40de50def trace: Wrap all textures and surface created by the pipe driver.
That is,

Unfortunately, this causes a regression in softpipe, where the
output gets tyled.
2008-08-15 10:35:19 +01:00

17 lines
284 B
Python

Import('*')
env = env.Clone()
trace = env.ConvenienceLibrary(
target = 'trace',
source = [
'tr_context.c',
'tr_dump.c',
'tr_screen.c',
'tr_state.c',
'tr_stream.c',
'tr_texture.c',
'tr_winsys.c',
])
Export('trace')