xenocara/driver/xf86-video-rendition/src/rendition_options.h
2008-10-12 21:05:42 +00:00

37 lines
1.0 KiB
C

#ifndef __RENDITION_OPTION_H__
#define __RENDITION_OPTION_H__
/* supported options */
typedef enum {
OPTION_FBWC,
OPTION_SW_CURSOR,
OPTION_NOACCEL,
OPTION_OVERCLOCK_MEM,
OPTION_NO_DDC,
OPTION_SHADOW_FB,
OPTION_ROTATE
} renditionOpts;
#ifdef DO_NOT_ACTIVATE
/*********************************/
For reference only <DI>
static const OptionInfoRec renditionOptions[]={
{ OPTION_FBWC, "FramebufferWC", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_SW_CURSOR, "SWCursor", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_NOACCEL, "NoAccel", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_OVERCLOCK_MEM,"Overclock_Mem", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_NO_DDC, "NoDDC", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_SHADOW_FB, "ShadowFB", OPTV_BOOLEAN, {0}, FALSE },
{ OPTION_ROTATE, "Rotate", OPTV_ANYSTR, {0}, FALSE },
{ -1, NULL, OPTV_NONE, {0}, FALSE }
};
/*********************************/
#endif /* For reference only */
#endif /* __RENDITION_OPTION_H__ */