mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Misc. typo fixes
svn path=/trunk/; revision=36955
This commit is contained in:
@@ -764,17 +764,17 @@ BOOLEAN DIB_16BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf,
|
||||
/* Calc the Zoom Width of Source */
|
||||
SrcSizeX = SourceRect->right - SourceRect->left;
|
||||
|
||||
/* Calc the Zoom height of Destions */
|
||||
/* Calc the Zoom height of Destinations */
|
||||
DesSizeY = DestRect->bottom - DestRect->top;
|
||||
|
||||
/* Calc the Zoom width of Destions */
|
||||
/* Calc the Zoom width of Destinations */
|
||||
DesSizeX = DestRect->right - DestRect->left;
|
||||
|
||||
/* Calc the zoom factor of soruce height */
|
||||
/* Calc the zoom factor of source height */
|
||||
SrcZoomYHight = SrcSizeY / DesSizeY;
|
||||
SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY);
|
||||
|
||||
/* Calc the zoom factor of soruce width */
|
||||
/* Calc the zoom factor of source width */
|
||||
SrcZoomXHight = SrcSizeX / DesSizeX;
|
||||
SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX);
|
||||
|
||||
|
||||
@@ -516,17 +516,17 @@ BOOLEAN DIB_32BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf,
|
||||
/* Calc the Zoom Width of Source */
|
||||
SrcSizeX = SourceRect->right - SourceRect->left;
|
||||
|
||||
/* Calc the Zoom height of Destions */
|
||||
/* Calc the Zoom height of Destinations */
|
||||
DesSizeY = DestRect->bottom - DestRect->top;
|
||||
|
||||
/* Calc the Zoom width of Destions */
|
||||
/* Calc the Zoom width of Destinations */
|
||||
DesSizeX = DestRect->right - DestRect->left;
|
||||
|
||||
/* Calc the zoom factor of soruce height */
|
||||
/* Calc the zoom factor of source height */
|
||||
SrcZoomYHight = SrcSizeY / DesSizeY;
|
||||
SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY);
|
||||
|
||||
/* Calc the zoom factor of soruce width */
|
||||
/* Calc the zoom factor of source width */
|
||||
SrcZoomXHight = SrcSizeX / DesSizeX;
|
||||
SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX);
|
||||
|
||||
|
||||
@@ -499,17 +499,17 @@ BOOLEAN DIB_8BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf,
|
||||
/* Calc the Zoom Width of Source */
|
||||
SrcSizeX = SourceRect->right - SourceRect->left;
|
||||
|
||||
/* Calc the Zoom height of Destions */
|
||||
/* Calc the Zoom height of Destinations */
|
||||
DesSizeY = DestRect->bottom - DestRect->top;
|
||||
|
||||
/* Calc the Zoom width of Destions */
|
||||
/* Calc the Zoom width of Destinations */
|
||||
DesSizeX = DestRect->right - DestRect->left;
|
||||
|
||||
/* Calc the zoom factor of soruce height */
|
||||
/* Calc the zoom factor of source height */
|
||||
SrcZoomYHight = SrcSizeY / DesSizeY;
|
||||
SrcZoomYLow = SrcSizeY - (SrcZoomYHight * DesSizeY);
|
||||
|
||||
/* Calc the zoom factor of soruce width */
|
||||
/* Calc the zoom factor of source width */
|
||||
SrcZoomXHight = SrcSizeX / DesSizeX;
|
||||
SrcZoomXLow = SrcSizeX - (SrcZoomXHight * DesSizeX);
|
||||
|
||||
@@ -677,7 +677,7 @@ BOOLEAN DIB_8BPP_StretchBlt(SURFOBJ *DestSurf, SURFOBJ *SourceSurf,
|
||||
for (DesX=0; DesX<DesSizeX; DesX++)
|
||||
{
|
||||
*DestBits = XLATEOBJ_iXlate(ColorTranslation,
|
||||
DIB_1BPP_GetPixel(SourceSurf, sx, sy));
|
||||
DIB_32BPP_GetPixel(SourceSurf, sx, sy));
|
||||
|
||||
DestBits = (PULONG)((ULONG_PTR)DestBits + 1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user