2012-10-30 20:26:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 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 "SkPath.h"
|
|
|
|
#include "SkSurface.h"
|
|
|
|
|
|
|
|
#define ZOOM 32
|
|
|
|
#define SMALL_W 9
|
|
|
|
#define SMALL_H 3
|
|
|
|
#define REPEAT_LOOP 5
|
|
|
|
|
|
|
|
static SkSurface* new_surface(int width, int height) {
|
2014-12-10 15:24:28 +00:00
|
|
|
return SkSurface::NewRasterN32Premul(width, height);
|
2012-10-30 20:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_pixel_centers(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(0xFF0088FF);
|
|
|
|
paint.setAntiAlias(true);
|
2012-10-31 02:01:18 +00:00
|
|
|
|
2012-10-30 20:26:58 +00:00
|
|
|
for (int y = 0; y < SMALL_H; ++y) {
|
|
|
|
for (int x = 0; x < SMALL_W; ++x) {
|
|
|
|
canvas->drawCircle(x + 0.5f, y + 0.5f, 1.5f / ZOOM, paint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_fatpath(SkCanvas* canvas, SkSurface* surface,
|
|
|
|
const SkPath paths[], int count) {
|
|
|
|
SkPaint paint;
|
|
|
|
|
2012-12-06 21:47:40 +00:00
|
|
|
surface->getCanvas()->clear(SK_ColorTRANSPARENT);
|
2012-10-30 20:26:58 +00:00
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
surface->getCanvas()->drawPath(paths[i], paint);
|
|
|
|
}
|
|
|
|
surface->draw(canvas, 0, 0, NULL);
|
|
|
|
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
for (int j = 0; j < count; ++j) {
|
|
|
|
canvas->drawPath(paths[j], paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
draw_pixel_centers(canvas);
|
|
|
|
}
|
|
|
|
|
|
|
|
class FatPathFillGM : public skiagm::GM {
|
|
|
|
public:
|
|
|
|
FatPathFillGM() {}
|
|
|
|
|
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2012-10-30 20:26:58 +00:00
|
|
|
virtual SkString onShortName() {
|
|
|
|
return SkString("fatpathfill");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual SkISize onISize() {
|
|
|
|
return SkISize::Make(SMALL_W * ZOOM, SMALL_H * ZOOM * REPEAT_LOOP);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
|
|
|
SkAutoTUnref<SkSurface> surface(new_surface(SMALL_W, SMALL_H));
|
|
|
|
|
|
|
|
canvas->scale(ZOOM, ZOOM);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
paint.setStrokeWidth(SK_Scalar1);
|
|
|
|
|
|
|
|
for (int i = 0; i < REPEAT_LOOP; ++i) {
|
|
|
|
SkPath line, path;
|
2012-12-04 02:01:25 +00:00
|
|
|
line.moveTo(SkIntToScalar(1), SkIntToScalar(2));
|
2012-12-03 17:35:19 +00:00
|
|
|
line.lineTo(SkIntToScalar(4 + i), SkIntToScalar(1));
|
2012-10-30 20:26:58 +00:00
|
|
|
paint.getFillPath(line, &path);
|
|
|
|
draw_fatpath(canvas, surface, &path, 1);
|
2012-10-31 02:01:18 +00:00
|
|
|
|
2012-10-30 20:26:58 +00:00
|
|
|
canvas->translate(0, SMALL_H);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DEF_GM(return new FatPathFillGM;)
|