fb: pict: unexport fbRasterizeTrapezoid()
Not used by any 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
5def7f3f64
commit
02e61f15a9
|
@ -27,11 +27,12 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include "fb/fbpict_priv.h"
|
||||
|
||||
#include "fb.h"
|
||||
#include "glyphstr_priv.h"
|
||||
#include "picturestr.h"
|
||||
#include "mipict.h"
|
||||
#include "fbpict.h"
|
||||
|
||||
void
|
||||
fbComposite(CARD8 op,
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
#ifndef _FBPICT_H_
|
||||
#define _FBPICT_H_
|
||||
|
||||
#include "fb.h"
|
||||
|
||||
/* fbpict.c */
|
||||
extern _X_EXPORT void
|
||||
fbComposite(CARD8 op,
|
||||
|
@ -45,9 +47,6 @@ extern _X_EXPORT void
|
|||
fbAddTraps(PicturePtr pPicture,
|
||||
INT16 xOff, INT16 yOff, int ntrap, xTrap * traps);
|
||||
|
||||
extern _X_EXPORT void
|
||||
fbRasterizeTrapezoid(PicturePtr alpha, xTrapezoid * trap, int x_off, int y_off);
|
||||
|
||||
extern _X_EXPORT void
|
||||
fbAddTriangles(PicturePtr pPicture,
|
||||
INT16 xOff, INT16 yOff, int ntri, xTriangle * tris);
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
/* 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);
|
||||
|
||||
#endif /* XORG_FBPICT_PRIV_H */
|
|
@ -22,11 +22,12 @@
|
|||
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "fb/fbpict_priv.h"
|
||||
|
||||
#include "fb.h"
|
||||
|
||||
#include "picturestr.h"
|
||||
#include "mipict.h"
|
||||
#include "fbpict.h"
|
||||
#include "damage.h"
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue