Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
4573 views
1
#ifndef GDI_SW_WINSYS_H
2
#define GDI_SW_WINSYS_H
3
4
#include <windows.h>
5
6
#include "pipe/p_compiler.h"
7
#include "frontend/sw_winsys.h"
8
9
void gdi_sw_display( struct sw_winsys *winsys,
10
struct sw_displaytarget *dt,
11
HDC hDC );
12
13
struct sw_winsys *
14
gdi_create_sw_winsys(void);
15
16
#endif
17
18