Add Outbuf structure and some function prototypes

NB: These are not finalized yet and may change.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-04-30 07:08:25 +01:00
parent 8ef46df20d
commit b607e66f68
1 changed files with 12 additions and 0 deletions

View File

@ -28,4 +28,16 @@ extern int _evas_engine_drm_log_dom;
# endif
# define CRIT(...) EINA_LOG_DOM_CRIT(_evas_engine_drm_log_dom, __VA_ARGS__)
typedef struct _Outbuf Outbuf;
struct _Outbuf
{
unsigned int depth;
int w, h, rotation;
Eina_Bool destination_alpha : 1;
};
Outbuf *evas_outbuf_setup(int w, int h, unsigned int rotation, unsigned int depth, Eina_Bool alpha);
void evas_outbuf_free(Outbuf *ob);
#endif