e02e12de8a
Probably only works under Haiku due to the new area flags. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12219 a95241bf-73f2-0310-859d-f6bbb57e9c96
40 lines
727 B
C
40 lines
727 B
C
/*
|
|
Copyright (c) 2002, Thomas Kurschel
|
|
|
|
|
|
Part of Radeon accelerant
|
|
|
|
additional accelerant interface definitions
|
|
*/
|
|
|
|
|
|
#ifndef _ACCELERANT_EXT_H
|
|
#define _ACCELERANT_EXT_H
|
|
|
|
|
|
// additional timing flags for GetMode/SetMode
|
|
enum {
|
|
RADEON_MODE_STANDARD = 0 << 16,
|
|
RADEON_MODE_COMBINE = 3 << 16,
|
|
|
|
RADEON_MODE_MASK = 7 << 16,
|
|
|
|
// used internally
|
|
RADEON_MODE_POSITION_HORIZONTAL = 0 << 21,
|
|
RADEON_MODE_POSITION_VERTICAL = 1 << 21,
|
|
RADEON_MODE_POSITION_MASK = 1 << 21,
|
|
|
|
RADEON_MODE_MULTIMON_REQUEST = 1 << 25,
|
|
RADEON_MODE_MULTIMON_REPLY = 1 << 26
|
|
};
|
|
|
|
// operation codes tunneled via ProposeDisplayMode
|
|
typedef enum {
|
|
ms_swap = 'sw',
|
|
ms_use_laptop_panel = 'up',
|
|
ms_tv_standard = 'tv'
|
|
} multi_mon_settings;
|
|
|
|
|
|
#endif
|