diff options
author | Alexander Tkachev | 2016-06-22 17:31:57 +0600 |
---|---|---|
committer | Eugene Sandulenko | 2016-07-03 12:18:00 +0200 |
commit | e04e13de33cd0440abd194db81062c00536adbd9 (patch) | |
tree | 4085ca22ad488f05e2d3a27366ce93a40a37afee | |
parent | 31e528c070d14baf62dc1e8570075425a2efbb42 (diff) | |
download | scummvm-rg350-e04e13de33cd0440abd194db81062c00536adbd9.tar.gz scummvm-rg350-e04e13de33cd0440abd194db81062c00536adbd9.tar.bz2 scummvm-rg350-e04e13de33cd0440abd194db81062c00536adbd9.zip |
GUI: Remove unnecessary debug output
-rw-r--r-- | graphics/VectorRendererSpec.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/graphics/VectorRendererSpec.cpp b/graphics/VectorRendererSpec.cpp index 6281de7f63..42f02234d8 100644 --- a/graphics/VectorRendererSpec.cpp +++ b/graphics/VectorRendererSpec.cpp @@ -1143,14 +1143,12 @@ drawRoundedSquareClip(int x, int y, int r, int w, int h, int cx, int cy, int cw, && x + w + Base::_shadowOffset + 1 < Base::_activeSurface->w && y + h + Base::_shadowOffset + 1 < Base::_activeSurface->h && h > (Base::_shadowOffset + 1) * 2) { - debug("shadow"); drawRoundedSquareShadow(x, y, r, w, h, Base::_shadowOffset); } if (_clippingArea.isEmpty() || _clippingArea.contains(Common::Rect(x, y, x + w, y + h))) { drawRoundedSquareAlg(x, y, r, w, h, _fgColor, Base::_fillMode); } else { - debug("clipclipclip %d..%d %d..%d", cx, cw + cx, cy, cy + ch); drawRoundedSquareAlgClip(x, y, r, w, h, _fgColor, Base::_fillMode); } @@ -1904,7 +1902,6 @@ drawBorderRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, PixelType color1 = color; PixelType color2 = color; - debug("from %d to %d (drawing from %d to %d or something)", _clippingArea.left, _clippingArea.right, x1, x1+w); while (sw++ < Base::_strokeWidth) { blendFill(ptr_fill + sp + r, ptr_fill + w + 1 + sp - r, color1, alpha_t); // top blendFill(ptr_fill + hp - sp + r, ptr_fill + w + hp + 1 - sp - r, color2, alpha_b); // bottom @@ -2192,7 +2189,6 @@ drawRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, Vecto // If only border is visible if ((!(w <= 0 || h <= 0)) && (fill_m != Base::kFillDisabled)) { - debug("interior"); if (fill_m == Base::kFillBackground) drawInteriorRoundedSquareAlg(x1, y1, r, w, h, _bgColor, fill_m); else @@ -2200,7 +2196,6 @@ drawRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, Vecto } if (Base::_strokeWidth) { - debug("stroke"); if (r != 0 && _bevel > 0) { drawBorderRoundedSquareAlg(x1, y1, r, w, h, color, fill_m, borderAlpha_t, borderAlpha_r, borderAlpha_b, borderAlpha_l); drawBorderRoundedSquareAlg(x1, y1, r, w, h, _bevelColor, fill_m, bevelAlpha_t, bevelAlpha_r, bevelAlpha_b, bevelAlpha_l); @@ -2223,8 +2218,6 @@ drawRoundedSquareAlgClip(int x1, int y1, int r, int w, int h, PixelType color, V const uint8 bevelAlpha_b = 0; const uint8 bevelAlpha_l = 127; - debug("clip version"); - // If only border is visible if ((!(w <= 0 || h <= 0)) && (fill_m != Base::kFillDisabled)) { if (fill_m == Base::kFillBackground) @@ -2352,8 +2345,6 @@ drawRoundedSquareShadow(int x1, int y1, int r, int w, int h, int offset) { int width = w + offset + 2; int height = h + offset + 1; - debug("from %d to %d (drawing from %d to %d or something)", _clippingArea.left, _clippingArea.right, xstart, xstart + width); - for (int i = offset; i >= 0; i--) { int f, ddF_x, ddF_y; int x, y, px, py; |