diff options
author | Emil Velikov <[email protected]> | 2014-06-16 14:23:50 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-07-02 10:52:53 +0100 |
commit | 6eabddd531918b922619cb16f1250b211d5c193a (patch) | |
tree | 4cbc70b0ea712f2e23e073f8f55e2ed94538bae8 /src/gallium/targets/dri-nouveau/target.c | |
parent | 9a7fd2954fa24a6d899c1fa5e7be55723d6892b8 (diff) |
targets/dri-nouveau: Convert to static/shared pipe-drivers
Similiar to other targets, we'd like to convert all the separate
targets into a single one, thus we'll minimize the duplication and
overall size of mesa. The conversion per API basis, with the drivers
available either statically or shared. Currently the former is the
default.
v2: Correctly append the version script to the linker flags.
Signed-off-by: Emil Velikov <[email protected]>
Tested-by: Rob Clark <[email protected]>
Tested-by: Thomas Helland <thomashelland90 at gmail.com>
Acked-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/targets/dri-nouveau/target.c')
-rw-r--r-- | src/gallium/targets/dri-nouveau/target.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/gallium/targets/dri-nouveau/target.c b/src/gallium/targets/dri-nouveau/target.c deleted file mode 100644 index f0fcdd834dd..00000000000 --- a/src/gallium/targets/dri-nouveau/target.c +++ /dev/null @@ -1,36 +0,0 @@ - -#include "target-helpers/inline_debug_helper.h" -#include "state_tracker/drm_driver.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; -} - -static const struct drm_conf_ret share_fd_ret = { - .type = DRM_CONF_BOOL, - .val.val_int = true, -}; - -static const struct drm_conf_ret *drm_configuration(enum drm_conf conf) -{ - switch (conf) { - case DRM_CONF_SHARE_FD: - return &share_fd_ret; - default: - break; - } - return NULL; -} - -DRM_DRIVER_DESCRIPTOR("nouveau", "nouveau", create_screen, drm_configuration) |