devilhorns pushed a commit to branch master.

commit b607e66f68f7966078626d4e98faf87ac53114ff
Author: Chris Michael <[email protected]>
Date:   Tue Apr 30 07:08:25 2013 +0100

    Add Outbuf structure and some function prototypes
    
    NB: These are not finalized yet and may change.
    
    Signed-off-by: Chris Michael <[email protected]>
---
 src/modules/evas/engines/drm/evas_engine.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/modules/evas/engines/drm/evas_engine.h 
b/src/modules/evas/engines/drm/evas_engine.h
index 2691258..41e5ac1 100644
--- a/src/modules/evas/engines/drm/evas_engine.h
+++ b/src/modules/evas/engines/drm/evas_engine.h
@@ -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

-- 

------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1

Reply via email to