aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/fb/Evas_Engine_FB.h
blob: b5482378577694c2b8ce45ff59bb7867b52f664e (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_FB_H
#define _EVAS_ENGINE_FB_H

typedef struct _Evas_Engine_Info_FB Evas_Engine_Info_FB;

struct _Evas_Engine_Info_FB
{
   /* 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 {

      int virtual_terminal;
      int device_number;
      int refresh;
      int rotation;
   } info;

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