aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h')
-rw-r--r--libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h b/libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h
deleted file mode 100644
index a9cbbfb..0000000
--- a/libraries/evas/src/modules/engines/buffer/Evas_Engine_Buffer.h
+++ /dev/null
@@ -1,43 +0,0 @@
1#ifndef _EVAS_ENGINE_BUFFER_H
2#define _EVAS_ENGINE_BUFFER_H
3
4#define EVAS_ENGINE_BUFFER_DEPTH_ARGB32 0
5#define EVAS_ENGINE_BUFFER_DEPTH_BGRA32 1
6#define EVAS_ENGINE_BUFFER_DEPTH_RGB24 2
7#define EVAS_ENGINE_BUFFER_DEPTH_BGR24 3
8#define EVAS_ENGINE_BUFFER_DEPTH_RGB32 4
9
10typedef struct _Evas_Engine_Info_Buffer Evas_Engine_Info_Buffer;
11
12struct _Evas_Engine_Info_Buffer
13{
14 /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
15 /* at you and make nasty noises */
16 Evas_Engine_Info magic;
17
18 struct {
19 int depth_type;
20
21 void *dest_buffer;
22 int dest_buffer_row_bytes;
23
24 char use_color_key : 1;
25 int alpha_threshold;
26 int color_key_r;
27 int color_key_g;
28 int color_key_b;
29 struct {
30 void * (*new_update_region) (int x, int y, int w, int h, int *row_bytes);
31 void (*free_update_region) (int x, int y, int w, int h, void *data);
32 void * (*switch_buffer) (void *data, void *dest_buffer);
33 } func;
34
35 void *switch_data;
36 } info;
37
38 /* non-blocking or blocking mode */
39 Evas_Engine_Render_Mode render_mode;
40};
41#endif
42
43