Files
third_party_mesa3d/src/gallium/targets/pipe-loader/pipe_radeonsi.c
Michel Dänzer 24bc382010 radeonsi: Fixups for recent build infrastructure changes.
In particular for the pipe loader changes.
2012-05-12 12:12:21 +02:00

27 lines
559 B
C

#include "state_tracker/drm_driver.h"
#include "target-helpers/inline_debug_helper.h"
#include "radeon/drm/radeon_drm_public.h"
#include "radeonsi/radeonsi_public.h"
static struct pipe_screen *
create_screen(int fd)
{
struct radeon_winsys *rw;
struct pipe_screen *screen;
rw = radeon_drm_winsys_create(fd);
if (!rw)
return NULL;
screen = radeonsi_screen_create(rw);
if (!screen)
return NULL;
screen = debug_screen_wrap(screen);
return screen;
}
PUBLIC
DRM_DRIVER_DESCRIPTOR("radeonsi", "radeon", create_screen, NULL)