aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/directfb/Evas_Engine_DirectFB.h
blob: 53352b77ca713ec5abaa4a7be035373d41c9df2e (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
#ifndef _EVAS_ENGINE_DIRECTFB_H
#define _EVAS_ENGINE_DIRECTFB_H

#include <Evas.h>
#include <directfb.h>

typedef struct _Evas_Engine_Info_DirectFB Evas_Engine_Info_DirectFB;

struct _Evas_Engine_Info_DirectFB
{
   /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
   /* at you and make nasty noises */
   Evas_Engine_Info magic;

   struct Evas_Engine_DirectFB_Spec {
      IDirectFB                 *dfb;
      IDirectFBSurface          *surface;
   } info;

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