aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/pipe-loader/pipe_swrast.c
blob: f7f354acf3fe7dc36e755d96c08c85b4aca3c1c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "target-helpers/inline_sw_helper.h"
#include "target-helpers/inline_debug_helper.h"
#include "state_tracker/drm_driver.h"

PUBLIC struct pipe_screen *
swrast_create_screen(struct sw_winsys *ws);

struct pipe_screen *
swrast_create_screen(struct sw_winsys *ws)
{
   struct pipe_screen *screen;

   screen = sw_screen_create(ws);
   if (screen)
      screen = debug_screen_wrap(screen);

   return screen;
}