aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_16_x11/Evas_Engine_Software_16_X11.h
blob: 9768f0a4fd3ab9c27a27898c165c0afae4a3b5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _EVAS_ENGINE_SOFTWARE_16_X11_H
#define _EVAS_ENGINE_SOFTWARE_16_X11_H

#include <X11/Xlib.h>

typedef struct _Evas_Engine_Info_Software_16_X11              Evas_Engine_Info_Software_16_X11;

struct _Evas_Engine_Info_Software_16_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;
      int rotation;
   } info;

   /* non-blocking or blocking mode */
   Evas_Engine_Render_Mode render_mode;
};
#endif