Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/targets/graw-null/graw_null.c
4565 views
1
#include "frontend/graw.h"
2
3
4
5
6
struct pipe_screen *
7
graw_create_window_and_screen( int x,
8
int y,
9
unsigned width,
10
unsigned height,
11
enum pipe_format format,
12
void **handle)
13
{
14
return NULL;
15
}
16
17
18
19
void
20
graw_set_display_func( void (*draw)( void ) )
21
{
22
}
23
24
25
void
26
graw_main_loop( void )
27
{
28
}
29
30