rename local vars 'pixel' to 'pixelvalue'

Reference issue: https://github.com/libsdl-org/SDL/issues/12749.
This commit is contained in:
Ozkan Sezer
2025-04-07 20:43:00 +03:00
committed by Ozkan Sezer
parent 433704e774
commit 4c1a3ccd45
7 changed files with 377 additions and 377 deletions

View File

@@ -945,9 +945,9 @@ static void SDL_BlitTriangle_Slow(SDL_BlitInfo *info,
ASSEMBLE_RGB(dst, dstbpp, dst_fmt, dstR, dstG, dstB);
} else {
// SDL_PIXELFORMAT_ARGB2101010
Uint32 pixel;
ARGB2101010_FROM_RGBA(pixel, dstR, dstG, dstB, dstA);
*(Uint32 *)dst = pixel;
Uint32 pixelvalue;
ARGB2101010_FROM_RGBA(pixelvalue, dstR, dstG, dstB, dstA);
*(Uint32 *)dst = pixelvalue;
}
}
TRIANGLE_END_LOOP