mi: miline.h: drop DEFAULTZEROLINEBIAS from public header

This define in only used locally, in exactly one source file,
thus no neeed to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1726>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-04-22 18:46:09 +02:00 committed by Marge Bot
parent c06d9da5b6
commit e1e8ab3ddf
2 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,6 @@ in this Software without prior written authorization from The Open Group.
#define OCTANT7 (1 << (YMAJOR)) #define OCTANT7 (1 << (YMAJOR))
#define OCTANT8 (1 << (0)) #define OCTANT8 (1 << (0))
#define DEFAULTZEROLINEBIAS (OCTANT2 | OCTANT3 | OCTANT4 | OCTANT5)
/* /*
* Devices can configure the rendering of routines in mi, mfb, and cfb* * Devices can configure the rendering of routines in mi, mfb, and cfb*
* by specifying a thin line bias to be applied to a particular screen * by specifying a thin line bias to be applied to a particular screen

View File

@ -59,6 +59,8 @@ typedef struct {
int ysize; int ysize;
} miScreenInitParmsRec, *miScreenInitParmsPtr; } miScreenInitParmsRec, *miScreenInitParmsPtr;
#define DEFAULTZEROLINEBIAS (OCTANT2 | OCTANT3 | OCTANT4 | OCTANT5)
/* this plugs into pScreen->ModifyPixmapHeader */ /* this plugs into pScreen->ModifyPixmapHeader */
Bool Bool
miModifyPixmapHeader(PixmapPtr pPixmap, int width, int height, int depth, miModifyPixmapHeader(PixmapPtr pPixmap, int width, int height, int depth,