fb: pict: unexport fbTriangles()
Not used by drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
12cb13d1fa
commit
b0e7326f6d
|
@ -47,13 +47,6 @@ extern _X_EXPORT void
|
||||||
fbAddTraps(PicturePtr pPicture,
|
fbAddTraps(PicturePtr pPicture,
|
||||||
INT16 xOff, INT16 yOff, int ntrap, xTrap * traps);
|
INT16 xOff, INT16 yOff, int ntrap, xTrap * traps);
|
||||||
|
|
||||||
extern _X_EXPORT void
|
|
||||||
fbTriangles(CARD8 op,
|
|
||||||
PicturePtr pSrc,
|
|
||||||
PicturePtr pDst,
|
|
||||||
PictFormatPtr maskFormat,
|
|
||||||
INT16 xSrc, INT16 ySrc, int ntris, xTriangle * tris);
|
|
||||||
|
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
fbGlyphs(CARD8 op,
|
fbGlyphs(CARD8 op,
|
||||||
PicturePtr pSrc,
|
PicturePtr pSrc,
|
||||||
|
|
|
@ -20,4 +20,9 @@ void fbTrapezoids(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
|
||||||
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
|
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
|
||||||
int ntrap, xTrapezoid *traps);
|
int ntrap, xTrapezoid *traps);
|
||||||
|
|
||||||
|
_X_EXPORT /* only for glamor module, not supposed to be used by external drivers */
|
||||||
|
void fbTriangles(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
|
||||||
|
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
|
||||||
|
int ntris, xTriangle *tris);
|
||||||
|
|
||||||
#endif /* XORG_FBPICT_PRIV_H */
|
#endif /* XORG_FBPICT_PRIV_H */
|
||||||
|
|
|
@ -25,7 +25,9 @@
|
||||||
* Zhigang Gong <zhigang.gong@gmail.com>
|
* Zhigang Gong <zhigang.gong@gmail.com>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#include <dix-config.h>
|
||||||
|
|
||||||
|
#include "fb/fbpict_priv.h"
|
||||||
#include "glamor_priv.h"
|
#include "glamor_priv.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue