Lines Matching refs:Uint32

54 	Uint32 count;
61 Uint32 color;
87 int fastPixelColorNolock(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color) in fastPixelColorNolock()
121 *(Uint32 *) p = color; in fastPixelColorNolock()
144 int fastPixelColorNolockNoclip(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color) in fastPixelColorNolockNoclip()
173 *(Uint32 *) p = color; in fastPixelColorNolockNoclip()
190 int fastPixelColor(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color) in fastPixelColor()
230 Uint32 color; in fastPixelRGBA()
258 Uint32 color; in fastPixelRGBANolock()
286 int _putPixelAlpha(SDL_Surface *dst, Sint16 x, Sint16 y, Uint32 color, Uint8 alpha) in _putPixelAlpha()
289 Uint32 Rmask, Gmask, Bmask, Amask; in _putPixelAlpha()
290 Uint32 Rshift, Gshift, Bshift, Ashift; in _putPixelAlpha()
291 Uint32 sR, sG, sB; in _putPixelAlpha()
292 Uint32 dR, dG, dB, dA; in _putPixelAlpha()
406 Uint32 R, G, B, A; in _putPixelAlpha()
407 Uint32 *pixel = (Uint32 *) dst->pixels + y * dst->pitch / 4 + x; in _putPixelAlpha()
411 Uint32 dc = *pixel; in _putPixelAlpha()
451 *((Uint32 *) dst->pixels + y * dst->pitch / 4 + x) = color; in _putPixelAlpha()
453 Uint32 *pixel = (Uint32 *) dst->pixels + y * dst->pitch / 4 + x; in _putPixelAlpha()
454 Uint32 dR, dG, dB, dA; in _putPixelAlpha()
455 Uint32 dc = *pixel; in _putPixelAlpha()
457 Uint32 surfaceAlpha, preMultR, preMultG, preMultB; in _putPixelAlpha()
458 Uint32 aTmp; in _putPixelAlpha()
509 int pixelColor(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color) in pixelColor()
512 Uint32 mcolor; in pixelColor()
557 int pixelColorNolock(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color) in pixelColorNolock()
560 Uint32 mcolor; in pixelColorNolock()
595 int _filledRectAlpha(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color, U… in _filledRectAlpha()
598 Uint32 Rmask, Gmask, Bmask, Amask; in _filledRectAlpha()
599 Uint32 Rshift, Gshift, Bshift, Ashift; in _filledRectAlpha()
600 Uint32 sR, sG, sB, sA; in _filledRectAlpha()
601 Uint32 dR, dG, dB, dA; in _filledRectAlpha()
736 Uint32 *row, *pixel; in _filledRectAlpha()
737 Uint32 R, G, B, A; in _filledRectAlpha()
738 Uint32 dc; in _filledRectAlpha()
755 row = (Uint32 *) dst->pixels + y * dst->pitch / 4; in _filledRectAlpha()
789 Uint32 *row, *pixel; in _filledRectAlpha()
790 Uint32 dR, dG, dB, dA; in _filledRectAlpha()
791 Uint32 dc; in _filledRectAlpha()
792 Uint32 surfaceAlpha, preMultR, preMultG, preMultB; in _filledRectAlpha()
793 Uint32 aTmp; in _filledRectAlpha()
815 row = (Uint32 *) dst->pixels + y * dst->pitch / 4; in _filledRectAlpha()
856 int filledRectAlpha(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) in filledRectAlpha()
859 Uint32 mcolor; in filledRectAlpha()
905 int _HLineAlpha(SDL_Surface * dst, Sint16 x1, Sint16 x2, Sint16 y, Uint32 color) in _HLineAlpha()
921 int _VLineAlpha(SDL_Surface * dst, Sint16 x, Sint16 y1, Sint16 y2, Uint32 color) in _VLineAlpha()
937 int pixelColorWeight(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color, Uint32 weight) in pixelColorWeight()
939 Uint32 a; in pixelColorWeight()
944 a = (color & (Uint32) 0x000000ff); in pixelColorWeight()
951 return (pixelColor(dst, x, y, (color & (Uint32) 0xffffff00) | (Uint32) a)); in pixelColorWeight()
965 int pixelColorWeightNolock(SDL_Surface * dst, Sint16 x, Sint16 y, Uint32 color, Uint32 weight) in pixelColorWeightNolock()
967 Uint32 a; in pixelColorWeightNolock()
972 a = (color & (Uint32) 0x000000ff); in pixelColorWeightNolock()
979 return (pixelColorNolock(dst, x, y, (color & (Uint32) 0xffffff00) | (Uint32) a)); in pixelColorWeightNolock()
997 Uint32 color; in pixelRGBA()
1021 …return (pixelColor(dst, x, y, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint3… in pixelRGBA()
1041 int hlineColorStore(SDL_Surface * dst, Sint16 x1, Sint16 x2, Sint16 y, Uint32 color) in hlineColorStore()
1148 *(Uint32 *) pixel = color; in hlineColorStore()
1190 …return (hlineColorStore(dst, x1, x2, y, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8… in hlineRGBAStore()
1204 int hlineColor(SDL_Surface * dst, Sint16 x1, Sint16 x2, Sint16 y, Uint32 color) in hlineColor()
1331 *(Uint32 *) pixel = color; in hlineColor()
1378 …return (hlineColor(dst, x1, x2, y, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | ( in hlineRGBA()
1392 int vlineColor(SDL_Surface * dst, Sint16 x, Sint16 y1, Sint16 y2, Uint32 color) in vlineColor()
1518 *(Uint32 *) pixel = color; in vlineColor()
1565 …return (vlineColor(dst, x, y1, y2, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | ( in vlineRGBA()
1580 int rectangleColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) in rectangleColor()
1669 (dst, x1, y1, x2, y2, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in rectangleRGBA()
1685 …angleColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Sint16 rad, Uint32 color) in roundedRectangleColor()
1821 …(dst, x1, y1, x2, y2, rad, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) … in roundedRectangleRGBA()
1837 …edBoxColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Sint16 rad, Uint32 color) in roundedBoxColor()
1977 …(dst, x1, y1, x2, y2, rad, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) … in roundedBoxRGBA()
2107 int boxColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) in boxColor()
2281 *(Uint32 *) pixel = color; in boxColor()
2324 …return (boxColor(dst, x1, y1, x2, y2, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) … in boxRGBA()
2347 int lineColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) in lineColor()
2484 *(Uint32 *) pixel = color; in lineColor()
2561 …return (lineColor(dst, x1, y1, x2, y2, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8)… in lineRGBA()
2589 int _aalineColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color, int d… in _aalineColor()
2593 Uint32 intshift, erracc, erradj; in _aalineColor()
2594 Uint32 erracctmp, wgt, wgtcompmask; in _aalineColor()
2828 int aalineColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint32 color) in aalineColor()
2851 …(dst, x1, y1, x2, y2, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a, 1)… in aalineRGBA()
2872 int circleColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Uint32 color) in circleColor()
3095 …return (circleColor(dst, x, y, rad, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | … in circleRGBA()
3117 int arcColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Sint16 start, Sint16 end, Uint32 co… in arcColor()
3493 …rn (arcColor(dst, x, y, rad, start, end, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << … in arcRGBA()
3512 int aacircleColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Uint32 color) in aacircleColor()
3537 (dst, x, y, rad, rad, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in aacircleRGBA()
3556 int filledCircleColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Uint32 color) in filledCircleColor()
3689 (dst, x, y, rad, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in filledCircleRGBA()
3709 int ellipseColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rx, Sint16 ry, Uint32 color) in ellipseColor()
4028 …return (ellipseColor(dst, x, y, rx, ry, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8… in ellipseRGBA()
4088 int aaellipseColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rx, Sint16 ry, Uint32 color) in aaellipseColor()
4334 (dst, x, y, rx, ry, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in aaellipseRGBA()
4358 int filledEllipseColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rx, Sint16 ry, Uint32 color) in filledEllipseColor()
4532 (dst, x, y, rx, ry, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in filledEllipseRGBA()
4553 int _pieColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Sint16 start, Sint16 end, Uint32 c… in _pieColor()
4704 Sint16 start, Sint16 end, Uint32 color) in pieColor()
4730 ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a, 0)); in pieRGBA()
4747 …PieColor(SDL_Surface * dst, Sint16 x, Sint16 y, Sint16 rad, Sint16 start, Sint16 end, Uint32 color) in filledPieColor()
4772 ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a, 1)); in filledPieRGBA()
4793 …(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Sint16 x3, Sint16 y3, Uint32 color) in trigonColor()
4859 …(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Sint16 x3, Sint16 y3, Uint32 color) in aatrigonColor()
4925 …(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Sint16 x3, Sint16 y3, Uint32 color) in filledTrigonColor()
4988 int polygonColor(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, int n, Uint32 color) in polygonColor()
5061 …return (polygonColor(dst, vx, vy, n, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) |… in polygonRGBA()
5077 int aapolygonColor(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, int n, Uint32 color) in aapolygonColor()
5150 …return (aapolygonColor(dst, vx, vy, n, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8)… in aapolygonRGBA()
5197 int filledPolygonColorMT(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, int n, Uint32 col… in filledPolygonColorMT()
5377 …rn (filledPolygonColorMT(dst, vx, vy, n, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << … in filledPolygonRGBAMT()
5394 int filledPolygonColor(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, int n, Uint32 color) in filledPolygonColor()
5421 …rn (filledPolygonColorMT(dst, vx, vy, n, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << … in filledPolygonRGBA()
5760 static Uint32 gfxPrimitivesFontColor[256];
5770 static Uint32 charWidth = 8;
5775 static Uint32 charHeight = 8;
5780 static Uint32 charWidthLocal = 8;
5785 static Uint32 charHeightLocal = 8;
5790 static Uint32 charPitch = 1;
5795 static Uint32 charRotation = 0;
5800 static Uint32 charSize = 8;
5815 void gfxPrimitivesSetFont(const void *fontdata, Uint32 cw, Uint32 ch) in gfxPrimitivesSetFont()
5861 void gfxPrimitivesSetFontRotation(Uint32 rotation) in gfxPrimitivesSetFontRotation()
5908 int characterColor(SDL_Surface * dst, Sint16 x, Sint16 y, char c, Uint32 color) in characterColor()
5915 Uint32 ix, iy; in characterColor()
5921 Uint32 pitch; in characterColor()
5923 Uint32 ci; in characterColor()
6035 *(Uint32 *)curpos = color; in characterColor()
6037 *(Uint32 *)curpos = 0; in characterColor()
6082 …return (characterColor(dst, x, y, c, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) |… in characterRGBA()
6099 int stringColor(SDL_Surface * dst, Sint16 x, Sint16 y, const char *s, Uint32 color) in stringColor()
6148 …return (stringColor(dst, x, y, s, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (U… in stringRGBA()
6221 int bezierColor(SDL_Surface * dst, const Sint16 * vx, const Sint16 * vy, int n, int s, Uint32 color) in bezierColor()
6301 …return (bezierColor(dst, vx, vy, n, s, ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8)… in bezierRGBA()
6808 …LineColor(SDL_Surface * dst, Sint16 x1, Sint16 y1, Sint16 x2, Sint16 y2, Uint8 width, Uint32 color) in thickLineColor()
6850 ((Uint32) r << 24) | ((Uint32) g << 16) | ((Uint32) b << 8) | (Uint32) a)); in thickLineRGBA()