drirc: Enable glthread for PCSX2
[mesa.git] / src / gallium / targets / pipe-loader / pipe_radeonsi.c
index 406ba1e1ddb30520fb39fa38c6c9bc803d58d9de..f5c5770af081116cf980b9a734e808e76c314daa 100644 (file)
@@ -1,16 +1,19 @@
-#include "state_tracker/drm_driver.h"
+#include "frontend/drm_driver.h"
 #include "target-helpers/inline_debug_helper.h"
-#include "radeon/drm/radeon_drm_public.h"
 #include "radeonsi/si_public.h"
+#include "util/xmlpool.h"
 
 static struct pipe_screen *
-create_screen(int fd)
+create_screen(int fd, const struct pipe_screen_config *config)
 {
-   struct radeon_winsys *rw;
+   struct pipe_screen *screen = radeonsi_screen_create(fd, config);
 
-   rw = radeon_drm_winsys_create(fd, radeonsi_screen_create);
-   return rw ? debug_screen_wrap(rw->screen) : NULL;
+   return screen ? debug_screen_wrap(screen) : NULL;
 }
 
+static const char *driconf_xml =
+   #include "radeonsi/si_driinfo.h"
+   ;
+
 PUBLIC
-DRM_DRIVER_DESCRIPTOR("radeonsi", "radeon", create_screen, NULL)
+DRM_DRIVER_DESCRIPTOR("radeonsi", &driconf_xml, create_screen)