efl/src/modules/evas/engines/eglfs/Evas_Engine_Eglfs.h

38 lines
908 B
C

#ifndef _EVAS_ENGINE_EGLFS_H
# define _EVAS_ENGINE_EGLFS_H
#include "../gl_generic/Evas_Engine_GL_Shared.h"
typedef struct _Evas_Engine_Info_Eglfs Evas_Engine_Info_Eglfs;
struct _Evas_Engine_Info_Eglfs
{
/* 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
{
unsigned int rotation, depth;
unsigned int crtc_id, conn_id, buffer_id;
unsigned int format, flags;
Eina_Bool destination_alpha : 1;
Eina_Bool vsync : 1;
Eina_Bool indirect : 1;
Evas_Engine_Info_Gl_Swap_Mode swap_mode : 4;
} info;
struct
{
void (*pre_swap)(void *data, Evas *evas);
void (*post_swap)(void *data, Evas *evas);
void *data;
} callback;
/* non-blocking or blocking mode */
Evas_Engine_Render_Mode render_mode;
};
#endif