blob: 930127981eb05a5f61cef53f6e2e3eaba4e3e58c [file] [log] [blame]
#ifndef XLIB_SW_WINSYS_H
#define XLIB_SW_WINSYS_H
#include "state_tracker/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 state trackers somehow need to know this.
*/
struct xlib_drawable {
Visual *visual;
int depth;
Drawable drawable;
};
#endif