blob: ad5119ba8e4da1e9f888fa74cdcdb33abcb081ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef XLIB_SW_WINSYS_H
#define XLIB_SW_WINSYS_H
#include "frontend/sw_winsys.h"
#include <X11/Xlib.h>
/* This is what the xlib software winsys expects to find in the
* "private" field of flush_frontbuffers().
*
* Xlib-based gallium frontends somehow need to know this.
*/
struct xlib_drawable {
Visual *visual;
int depth;
Drawable drawable;
};
#endif
|