blob: 8dd5986e27f4bd49522172c37f55d480b36a4a2d (
plain)
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
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86cmap.h,v 1.6 2000/05/11 18:14:28 tsi 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
);
#endif /* _XF86CMAP_H */
|