skia2/gm/drrect.cpp
commit-bot@chromium.org a90c680386 Turn on quilt mode in DM.
- Rename TileGrid -> Quilt to avoid the name overload.
  - Tag all failing GMs with kSkipTiled_Flag.

You may be wondering, do any GMs pass?  Yes, some do!  And that trends towards all of them as we increase --quiltTile.

Two GMs only fail in --quilt mode in 565.  Otherwise all GMs which fail are skipped, and those which don't fail aren't. (The 8888 variants of those two GMs are skipped even though they pass.)

BUG=skia:2477
R=reed@google.com, mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/256373002

git-svn-id: http://skia.googlecode.com/svn/trunk@14457 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-04-30 13:20:45 +00:00

74 lines
1.8 KiB
C++

/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm.h"
#include "SkCanvas.h"
#include "SkRRect.h"
#include "SkPath.h"
class DRRectGM : public skiagm::GM {
public:
DRRectGM() {}
protected:
virtual uint32_t onGetFlags() const SK_OVERRIDE {
return kSkipTiled_Flag;
}
virtual SkString onShortName() SK_OVERRIDE {
return SkString("drrect");
}
virtual SkISize onISize() SK_OVERRIDE {
return SkISize::Make(640, 480);
}
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
SkPaint paint;
paint.setAntiAlias(true);
SkRRect outers[4];
// like squares/circles, to exercise fast-cases in GPU
SkRect r = { 0, 0, 100, 100 };
SkVector radii[4] = {
{ 0, 0 }, { 30, 1 }, { 10, 40 }, { 40, 40 }
};
const SkScalar dx = r.width() + 16;
const SkScalar dy = r.height() + 16;
outers[0].setRect(r);
outers[1].setOval(r);
outers[2].setRectXY(r, 20, 20);
outers[3].setRectRadii(r, radii);
SkRRect inners[5];
r.inset(25, 25);
inners[0].setEmpty();
inners[1].setRect(r);
inners[2].setOval(r);
inners[3].setRectXY(r, 20, 20);
inners[4].setRectRadii(r, radii);
canvas->translate(16, 16);
for (size_t j = 0; j < SK_ARRAY_COUNT(inners); ++j) {
for (size_t i = 0; i < SK_ARRAY_COUNT(outers); ++i) {
canvas->save();
canvas->translate(dx * j, dy * i);
canvas->drawDRRect(outers[i], inners[j], paint);
canvas->restore();
}
}
}
private:
typedef GM INHERITED;
};
DEF_GM( return new DRRectGM; )