Merge branch '7.8'
[mesa.git] / src / gallium / auxiliary / target-helpers / wrap_screen.h
1 #ifndef WRAP_SCREEN_HELPER_H
2 #define WRAP_SCREEN_HELPER_H
3
4 #include "pipe/p_compiler.h"
5
6 struct pipe_screen;
7
8 /* Centralized code to inject common wrapping layers. Other layers
9 * can be introduced by specific targets, but these are the generally
10 * helpful ones we probably want everywhere.
11 */
12 struct pipe_screen *
13 gallium_wrap_screen( struct pipe_screen *screen );
14
15
16 #endif