diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-03-10 10:00:08 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-03-10 10:02:03 +0000 |
commit | 5235c5aac7c3a2e4af41cb70864245cc254fb797 (patch) | |
tree | d9d2fe5e82cb6f0b0de6961d2ea73f4c9f80dea0 /src/gallium/winsys/drm/radeon/python/SConscript | |
parent | 80f86d22b2d16e3191dfeedcb9ea94bf30db68a5 (diff) |
Revert "r300-gallium: Skeleton for integrating into the python statetracker."
This reverts commit 2d56d0839e6db0861131893d67fe23734800085a.
Never actually used.
Diffstat (limited to 'src/gallium/winsys/drm/radeon/python/SConscript')
-rw-r--r-- | src/gallium/winsys/drm/radeon/python/SConscript | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/gallium/winsys/drm/radeon/python/SConscript b/src/gallium/winsys/drm/radeon/python/SConscript deleted file mode 100644 index 91cae98697..0000000000 --- a/src/gallium/winsys/drm/radeon/python/SConscript +++ /dev/null @@ -1,33 +0,0 @@ -import os.path - -Import('*') - -if env['platform'] == 'linux': - - env = env.Clone() - - env.Tool('python') - - env.ParseConfig('pkg-config --cflags --libs libdrm') - - env.Prepend(CPPPATH = [ - '#src/gallium/state_trackers/python', - '../core', - ]) - - drivers = [ - softpipe, - radeon, - trace, - ] - - sources = [ - 'radeon_hardpipe_winsys.c', - 'xf86dri.c', - ] - - env.SharedLibrary( - target ='_gallium', - source = sources, - LIBS = [pyst] + drivers + gallium + env['LIBS'], - ) |