diff options
author | Emil Velikov <[email protected]> | 2011-07-16 01:28:15 +0100 |
---|---|---|
committer | Younes Manton <[email protected]> | 2011-07-16 11:21:48 -0400 |
commit | 55b415ff7751a6c5ac36ef49ac200460b47cae11 (patch) | |
tree | 8d0e2fbedbc00d10d8d68b5056256c536da586f5 /src/gallium/targets/xvmc-nouveau/target.c | |
parent | 56503fd13847ae5072af761ac69b923323e053f8 (diff) |
xvmc-nouveau: Resolve build
The following resolves the build issues and missing symbols
Add "xvmc-nouveau/target.c" - missing symbol "driver_description"
Add "drivers/nvc0/libnvc0.a" - missing symbol "nvc0_screen_create"
Remove "drivers/softpipe/libsoftpipe.a" - unnessecary dependency
resolves build (when building without swrast)
Add "drivers/trace/libtrace.a" in Makefile
Note: With/without those patches xvmc-nouveau still segfaults
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/xvmc-nouveau/target.c')
-rw-r--r-- | src/gallium/targets/xvmc-nouveau/target.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gallium/targets/xvmc-nouveau/target.c b/src/gallium/targets/xvmc-nouveau/target.c new file mode 100644 index 00000000000..9b61b036d26 --- /dev/null +++ b/src/gallium/targets/xvmc-nouveau/target.c @@ -0,0 +1,18 @@ +#include "state_tracker/drm_driver.h" +#include "target-helpers/inline_debug_helper.h" +#include "nouveau/drm/nouveau_drm_public.h" + +static struct pipe_screen *create_screen(int fd) +{ + struct pipe_screen *screen; + + screen = nouveau_drm_screen_create(fd); + if (!screen) + return NULL; + + screen = debug_screen_wrap(screen); + + return screen; +} + +DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen) |