blob: f4c76656f9d5f465fe83b5867978e45cb29a5cb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _QEMU_YAGL_EGL_INTERFACE_H
#define _QEMU_YAGL_EGL_INTERFACE_H
#include "yagl_types.h"
struct yagl_egl_interface
{
void (*ensure_ctx)(struct yagl_egl_interface */*iface*/);
void (*unensure_ctx)(struct yagl_egl_interface */*iface*/);
};
#endif
|