blob: 486a659258571d509a111684b22bfad8ded158fd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 | 
#include "state_tracker/drm_driver.h"
#include "target-helpers/inline_debug_helper.h"
#include "r600/drm/r600_drm_public.h"
#include "r600/r600_public.h"
static struct pipe_screen *
create_screen(int fd)
{
   struct radeon *rw;
   struct pipe_screen *screen;
   rw = r600_drm_winsys_create(fd);
   if (!rw)
      return NULL;
   screen = r600_screen_create(rw);
   if (!screen)
      return NULL;
   screen = debug_screen_wrap(screen);
   return screen;
}
PUBLIC
DRM_DRIVER_DESCRIPTOR("r600", "radeon", create_screen)
 |