fbcmap_mi.c: add a missing api
* fb/fbcmap_mi.c: (fbSetVisualTypesAndMasks): added this entry point that was missing. This is useful so that servers using this entry point can use fbcmap_mi.c, and be obliged to stick to fbcmap.c. Note that fbcmap.c does implement this entry point. Up to now, kdrive based server could not use fbcmap_mi.c because this entry point was missing. The will allow Xephyr to properly use GL.
This commit is contained in:
parent
6307ee7709
commit
a5bd536869
|
@ -103,6 +103,14 @@ fbSetVisualTypes (int depth, int visuals, int bitsPerRGB)
|
||||||
return miSetVisualTypes(depth, visuals, bitsPerRGB, -1);
|
return miSetVisualTypes(depth, visuals, bitsPerRGB, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Bool
|
||||||
|
fbSetVisualTypesAndMasks (int depth, int visuals, int bitsPerRGB,
|
||||||
|
Pixel redMask, Pixel greenMask, Pixel blueMask)
|
||||||
|
{
|
||||||
|
return miSetVisualTypesAndMasks(depth, visuals, bitsPerRGB, -1,
|
||||||
|
redMask, greenMask, blueMask);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Given a list of formats for a screen, create a list
|
* Given a list of formats for a screen, create a list
|
||||||
* of visuals and depths for the screen which coorespond to
|
* of visuals and depths for the screen which coorespond to
|
||||||
|
|
Loading…
Reference in New Issue