444e98de31
A variation of malloc buffers which get transferred to real graphics memory when there is an attempt to validate them.
21 lines
390 B
Python
21 lines
390 B
Python
Import('*')
|
|
|
|
pipebuffer = env.ConvenienceLibrary(
|
|
target = 'pipebuffer',
|
|
source = [
|
|
'pb_buffer_fenced.c',
|
|
'pb_buffer_malloc.c',
|
|
'pb_bufmgr_alt.c',
|
|
'pb_bufmgr_cache.c',
|
|
'pb_bufmgr_debug.c',
|
|
'pb_bufmgr_fenced.c',
|
|
'pb_bufmgr_mm.c',
|
|
'pb_bufmgr_ondemand.c',
|
|
'pb_bufmgr_pool.c',
|
|
'pb_bufmgr_slab.c',
|
|
'pb_validate.c',
|
|
'pb_winsys.c',
|
|
])
|
|
|
|
auxiliaries.insert(0, pipebuffer)
|