xlibre-xserver/fb/fbpict_priv.h
Enrico Weigelt, metux IT consult b0e7326f6d 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>
2025-06-12 16:35:19 +02:00

29 lines
963 B
C

/* SPDX-License-Identifier: MIT OR X11
*
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
*/
#ifndef XORG_FBPICT_PRIV_H
#define XORG_FBPICT_PRIV_H
#include <X11/extensions/renderproto.h>
#include "fb/fbpict.h"
#include "render/picture.h"
void fbRasterizeTrapezoid(PicturePtr alpha, xTrapezoid *trap,
int x_off, int y_off);
void fbAddTriangles(PicturePtr pPicture, INT16 xOff, INT16 yOff,
int ntri, xTriangle * tris);
void fbTrapezoids(CARD8 op, PicturePtr pSrc, PicturePtr pDst,
PictFormatPtr maskFormat, INT16 xSrc, INT16 ySrc,
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 */