diff options
author | José Fonseca <[email protected]> | 2009-09-22 17:40:20 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-09-23 10:32:51 +0100 |
commit | f724036f0045bd28f323af3666c43b3ef03b6886 (patch) | |
tree | 53300e51e3c6267a651cfe45add379983c9f2a9f /src/gallium/state_trackers/wgl/SConscript | |
parent | 8d1af5991d739e33962e8ca52c6a5ce1c9204ce6 (diff) |
wgl: Flatten the source tree.
It is easier to have the WGL API on top of the ICD callbacks as
Microsoft's own implementation does, than to have a seperate shared
entity. This source reorganization is in antecipation of that.
Diffstat (limited to 'src/gallium/state_trackers/wgl/SConscript')
-rw-r--r-- | src/gallium/state_trackers/wgl/SConscript | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/gallium/state_trackers/wgl/SConscript b/src/gallium/state_trackers/wgl/SConscript index 69b88618ecb..2e9aacb6e2c 100644 --- a/src/gallium/state_trackers/wgl/SConscript +++ b/src/gallium/state_trackers/wgl/SConscript @@ -18,20 +18,18 @@ if env['platform'] in ['windows']: ]) sources = [ - 'icd/stw_icd.c', - - 'wgl/stw_wgl.c', - - 'shared/stw_context.c', - 'shared/stw_device.c', - 'shared/stw_framebuffer.c', - 'shared/stw_pixelformat.c', - 'shared/stw_extensionsstring.c', - 'shared/stw_extswapinterval.c', - 'shared/stw_getprocaddress.c', - 'shared/stw_extgallium.c', - 'shared/stw_arbpixelformat.c', - 'shared/stw_tls.c', + 'stw_context.c', + 'stw_device.c', + 'stw_ext_extensionsstring.c', + 'stw_ext_gallium.c', + 'stw_ext_pixelformat.c', + 'stw_ext_swapinterval.c', + 'stw_framebuffer.c', + 'stw_getprocaddress.c', + 'stw_icd.c', + 'stw_pixelformat.c', + 'stw_tls.c', + 'stw_wgl.c', ] wgl = env.ConvenienceLibrary( |