From e44c85637a3298918e292e9ddba812856cf92924 Mon Sep 17 00:00:00 2001 From: Younes Manton Date: Sun, 27 Sep 2009 20:18:02 -0400 Subject: g3dvl: Implement XvMC using pipe_video_context. --- src/xvmc/SConscript | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/xvmc/SConscript (limited to 'src/xvmc/SConscript') diff --git a/src/xvmc/SConscript b/src/xvmc/SConscript new file mode 100644 index 0000000000..53e04183e4 --- /dev/null +++ b/src/xvmc/SConscript @@ -0,0 +1,21 @@ +Import('*') + +if env['platform'] not in ['linux']: + Return() + +env = env.Clone() + +env.AppendUnique(CPPPATH = [ + '#/src/gallium/winsys/g3dvl', +]) + +XvMCapi = env.StaticLibrary( + target = 'XvMCapi', + source = [ + 'block.c', + 'surface.c', + 'context.c', + 'subpicture.c', + 'attributes.c', + ], +) -- cgit v1.2.3