mi: unexport miStepDash()
Not used by any module/driver, so no need to keep it public. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1727>
This commit is contained in:
parent
aaaa0a35e5
commit
8a6bbc80f3
9
mi/mi.h
9
mi/mi.h
|
@ -108,15 +108,6 @@ miDoCopy(DrawablePtr pSrcDrawable,
|
||||||
int xOut,
|
int xOut,
|
||||||
int yOut, miCopyProc copyProc, Pixel bitplane, void *closure);
|
int yOut, miCopyProc copyProc, Pixel bitplane, void *closure);
|
||||||
|
|
||||||
/* midash.c */
|
|
||||||
|
|
||||||
extern _X_EXPORT void miStepDash(int /*dist */ ,
|
|
||||||
int * /*pDashIndex */ ,
|
|
||||||
unsigned char * /*pDash */ ,
|
|
||||||
int /*numInDashList */ ,
|
|
||||||
int * /*pDashOffset */
|
|
||||||
);
|
|
||||||
|
|
||||||
/* mieq.c */
|
/* mieq.c */
|
||||||
|
|
||||||
#ifndef INPUT_H
|
#ifndef INPUT_H
|
||||||
|
|
|
@ -15,5 +15,7 @@
|
||||||
void miScreenClose(ScreenPtr pScreen);
|
void miScreenClose(ScreenPtr pScreen);
|
||||||
|
|
||||||
void miWideArc(DrawablePtr pDraw, GCPtr pGC, int narcs, xArc * parcs);
|
void miWideArc(DrawablePtr pDraw, GCPtr pGC, int narcs, xArc * parcs);
|
||||||
|
void miStepDash(int dist, int * pDashIndex, unsigned char * pDash,
|
||||||
|
int numInDashList, int *pDashOffset);
|
||||||
|
|
||||||
#endif /* _XSERVER_MI_PRIV_H */
|
#endif /* _XSERVER_MI_PRIV_H */
|
||||||
|
|
|
@ -45,6 +45,8 @@ SOFTWARE.
|
||||||
******************************************************************/
|
******************************************************************/
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
|
|
||||||
|
#include "mi/mi_priv.h"
|
||||||
|
|
||||||
#include "regionstr.h"
|
#include "regionstr.h"
|
||||||
#include "mistruct.h"
|
#include "mistruct.h"
|
||||||
|
|
||||||
|
|
|
@ -63,11 +63,13 @@ SOFTWARE.
|
||||||
#undef _XOPEN_SOURCE
|
#undef _XOPEN_SOURCE
|
||||||
#endif
|
#endif
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
||||||
|
#include "mi/mi_priv.h"
|
||||||
|
|
||||||
#include "windowstr.h"
|
#include "windowstr.h"
|
||||||
#include "gcstruct.h"
|
#include "gcstruct.h"
|
||||||
#include "regionstr.h"
|
#include "regionstr.h"
|
||||||
#include "miwideline.h"
|
#include "miwideline.h"
|
||||||
#include "mi.h"
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int count; /* number of spans */
|
int count; /* number of spans */
|
||||||
|
|
Loading…
Reference in New Issue