efl/legacy/evas/src/modules/engines/cairo_x11/Evas_Engine_Cairo_X11.h

31 lines
799 B
C

#ifndef _EVAS_ENGINE_CAIRO_X11_H
#define _EVAS_ENGINE_CAIRO_X11_H
#include <X11/Xlib.h>
typedef struct _Evas_Engine_Info_Cairo_X11 Evas_Engine_Info_Cairo_X11;
struct _Evas_Engine_Info_Cairo_X11
{
/* PRIVATE - don't mess with this baby or evas will poke its tongue out */
/* at you and make nasty noises */
Evas_Engine_Info magic;
/* engine specific data & parameters it needs to set up */
struct {
Display *display;
Drawable drawable;
Visual *visual;
Colormap colormap;
int depth;
} info;
/* engine specific function calls to query stuff about the destination */
/* engine (what visual & colormap & depth to use, performance info etc. */
/* non-blocking or blocking mode */
Evas_Engine_Render_Mode render_mode;
};
#endif