treewide: replace PICT_a8r8g8b8 by PIXMAN_a8r8g8b8

Try not to use old compat macros anymore, use the real ones instead.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-08-05 19:41:23 +02:00
committed by Enrico Weigelt
parent 6b17a3bfbb
commit 35a43252ca
11 changed files with 19 additions and 19 deletions

View File

@@ -1508,7 +1508,7 @@ ProcRenderCreateCursor(ClientPtr client)
pScreen->SourceValidate(pSrc->pDrawable, 0, 0, width, height,
IncludeInferiors);
if (pSrc->format == PICT_a8r8g8b8) {
if (pSrc->format == PIXMAN_a8r8g8b8) {
(*pScreen->GetImage) (pSrc->pDrawable,
0, 0, width, height, ZPixmap,
0xffffffff, (void *) argbbits);
@@ -1519,7 +1519,7 @@ ProcRenderCreateCursor(ClientPtr client)
PictFormatPtr pFormat;
int error;
pFormat = PictureMatchFormat(pScreen, 32, PICT_a8r8g8b8);
pFormat = PictureMatchFormat(pScreen, 32, PIXMAN_a8r8g8b8);
if (!pFormat) {
free(argbbits);
free(srcbits);