1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86cmap.h,v 1.7 2001/05/06 00:49:12 mvojkovi Exp $ */
#ifndef _XF86CMAP_H
#define _XF86CMAP_H
#include "xf86str.h"
#include "colormapst.h"
#define CMAP_PALETTED_TRUECOLOR 0x0000001
#define CMAP_RELOAD_ON_MODE_SWITCH 0x0000002
#define CMAP_LOAD_EVEN_IF_OFFSCREEN 0x0000004
typedef void (*LoadPaletteFuncPtr)(
ScrnInfoPtr pScrn,
int numColors,
int *indicies,
LOCO *colors,
VisualPtr pVisual
);
typedef void (*SetOverscanFuncPtr)(
ScrnInfoPtr pScrn,
int Index
);
Bool xf86HandleColormaps(
ScreenPtr pScreen,
int maxCol,
int sigRGBbits,
LoadPaletteFuncPtr loadPalette,
SetOverscanFuncPtr setOverscan,
unsigned int flags
);
int
xf86ChangeGamma(
ScreenPtr pScreen,
Gamma newGamma
);
int
xf86ChangeGammaRamp(
ScreenPtr pScreen,
int size,
unsigned short *red,
unsigned short *green,
unsigned short *blue
);
int xf86GetGammaRampSize(ScreenPtr pScreen);
int
xf86GetGammaRamp(
ScreenPtr pScreen,
int size,
unsigned short *red,
unsigned short *green,
unsigned short *blue
);
#endif /* _XF86CMAP_H */
|