util: rename xmlpool.h to driconf.h
[mesa.git] / src / gallium / targets / pipe-loader / pipe_radeonsi.c
1 #include "frontend/drm_driver.h"
2 #include "target-helpers/inline_debug_helper.h"
3 #include "radeonsi/si_public.h"
4 #include "util/driconf.h"
5
6 static struct pipe_screen *
7 create_screen(int fd, const struct pipe_screen_config *config)
8 {
9 struct pipe_screen *screen = radeonsi_screen_create(fd, config);
10
11 return screen ? debug_screen_wrap(screen) : NULL;
12 }
13
14 static const char *driconf_xml =
15 #include "radeonsi/si_driinfo.h"
16 ;
17
18 PUBLIC
19 DRM_DRIVER_DESCRIPTOR("radeonsi", &driconf_xml, create_screen)