diff options
| author | phintuka <phintuka> | 2011-10-25 18:20:16 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-10-25 18:20:16 +0000 |
| commit | 6b6ab24740c019f7b153071c773ca8e2f79d75d6 (patch) | |
| tree | 948b185b0533f81889463bef7d946ae6f89fdcc1 | |
| parent | 0c0034c446d7e716f1296c1bfa89e184b92bd89e (diff) | |
| download | xineliboutput-6b6ab24740c019f7b153071c773ca8e2f79d75d6.tar.gz xineliboutput-6b6ab24740c019f7b153071c773ca8e2f79d75d6.tar.bz2 | |
Added HUD_XRENDER flag
| -rw-r--r-- | xine_frontend.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xine_frontend.h b/xine_frontend.h index df4bfd45..ddd82abf 100644 --- a/xine_frontend.h +++ b/xine_frontend.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.h,v 1.25 2011-02-25 01:41:23 phintuka Exp $ + * $Id: xine_frontend.h,v 1.26 2011-10-25 18:20:16 phintuka Exp $ * */ @@ -60,9 +60,10 @@ struct frontend_config_s { #define FE_ERROR 0 /* HUD OSD bitmask values */ -#define HUD_COMPOSITE 0x1 -#define HUD_XSHAPE 0x2 -#define HUD_OPENGL 0x4 +#define HUD_COMPOSITE 0x1 /* hud in transparent window */ +#define HUD_XSHAPE 0x2 /* use XShape */ +#define HUD_OPENGL 0x4 /* draw OSD and video using OpenGL */ +#define HUD_XRENDER 0x8 /* draw OSD and video using Xrender */ /* Special window_id's */ #define WINDOW_ID_NONE -1 |
