[Scummvm-git-logs] scummvm master -> b2727018344535789c96b0e9c95c741d0dd054c5

bgK bastien.bouclet at gmail.com
Sat Mar 17 16:17:11 CET 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
b272701834 GRAPHICS: Dont clip in the non-clip version of drawRoundedSquareAlg


Commit: b2727018344535789c96b0e9c95c741d0dd054c5
    https://github.com/scummvm/scummvm/commit/b2727018344535789c96b0e9c95c741d0dd054c5
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2018-03-17T16:11:41+01:00

Commit Message:
GRAPHICS: Dont clip in the non-clip version of drawRoundedSquareAlg

Fixes missing modern theme GUI dialog borders when using the
non-antialiased renderer.

Changed paths:
    graphics/VectorRendererSpec.cpp


diff --git a/graphics/VectorRendererSpec.cpp b/graphics/VectorRendererSpec.cpp
index 1d6b258..3f4c314 100644
--- a/graphics/VectorRendererSpec.cpp
+++ b/graphics/VectorRendererSpec.cpp
@@ -3199,8 +3199,6 @@ drawInteriorRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType colo
 		while (x++ < y) {
 			BE_ALGORITHM();
 
-			if (y1 + r + y < _clippingArea.top || y1 + r + y > _clippingArea.bottom) continue;
-
 			color1 = calcGradient(real_radius - x, long_h);
 			color2 = calcGradient(real_radius - y, long_h);
 			color3 = calcGradient(long_h - r + x, long_h);





More information about the Scummvm-git-logs mailing list