2014-08-06 20:07:15 +00:00
|
|
|
/*
|
|
|
|
* 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 "SkPaint.h"
|
|
|
|
#include "SkPicture.h"
|
|
|
|
#include "SkPictureRecorder.h"
|
|
|
|
#include "SkShader.h"
|
|
|
|
|
|
|
|
static const SkScalar kPictureSize = SK_Scalar1;
|
|
|
|
static const SkScalar kFillSize = 100;
|
|
|
|
static const unsigned kRowSize = 6;
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
SkScalar x, y, w, h;
|
|
|
|
SkScalar offsetX, offsetY;
|
|
|
|
} tiles[] = {
|
|
|
|
{ 0, 0, 1, 1, 0, 0 },
|
|
|
|
{ -0.5f, -0.5f, 1, 1, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1, 1, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1.5f, 1.5f, 0, 0 },
|
|
|
|
{ -0.5f, -0.5f, 1.5f, 1.5f, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1.5f, 1.5f, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 0.5f, 0.5f, 0, 0 },
|
|
|
|
{ 0.25f, 0.25f, 0.5f, 0.5f, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ -0.25f, -0.25f, 0.5f, 0.5f, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1, 1, 0.5f, 0.5f },
|
|
|
|
{ -0.5f, -0.5f, 1, 1, 0.5f, 0.5f },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1, 1, 0.5f, 0.5f },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1.5f, 1.5f, 0.5f, 0.5f },
|
|
|
|
{ -0.5f, -0.5f, 1.5f, 1.5f, 0.5f, 0.5f },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1.5f, 1.5f, 0.5f, 0.5f },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1.5f, 1, 0, 0 },
|
|
|
|
{ -0.5f, -0.5f, 1.5f, 1, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1.5f, 1, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 0.5f, 1, 0, 0 },
|
|
|
|
{ 0.25f, 0.25f, 0.5f, 1, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ -0.25f, -0.25f, 0.5f, 1, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1, 1.5f, 0, 0 },
|
|
|
|
{ -0.5f, -0.5f, 1, 1.5f, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ 0.5f, 0.5f, 1, 1.5f, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
|
|
|
|
{ 0, 0, 1, 0.5f, 0, 0 },
|
|
|
|
{ 0.25f, 0.25f, 1, 0.5f, 0, 0 },
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
{ -0.25f, -0.25f, 1, 0.5f, 0, 0 },
|
2014-08-06 20:07:15 +00:00
|
|
|
};
|
|
|
|
|
2014-12-09 13:23:20 +00:00
|
|
|
static void draw_scene(SkCanvas* canvas, SkScalar pictureSize) {
|
|
|
|
canvas->clear(SK_ColorWHITE);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(SK_ColorGREEN);
|
|
|
|
paint.setStyle(SkPaint::kFill_Style);
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
|
|
|
|
canvas->drawCircle(pictureSize / 4, pictureSize / 4, pictureSize / 4, paint);
|
|
|
|
canvas->drawRect(SkRect::MakeXYWH(pictureSize / 2, pictureSize / 2,
|
|
|
|
pictureSize / 2, pictureSize / 2), paint);
|
|
|
|
|
|
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
canvas->drawLine(pictureSize / 2, pictureSize * 1 / 3,
|
|
|
|
pictureSize / 2, pictureSize * 2 / 3, paint);
|
|
|
|
canvas->drawLine(pictureSize * 1 / 3, pictureSize / 2,
|
|
|
|
pictureSize * 2 / 3, pictureSize / 2, paint);
|
|
|
|
|
|
|
|
paint.setColor(SK_ColorBLACK);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
canvas->drawRect(SkRect::MakeWH(pictureSize, pictureSize), paint);
|
|
|
|
}
|
|
|
|
|
2014-08-06 20:07:15 +00:00
|
|
|
class PictureShaderTileGM : public skiagm::GM {
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
protected:
|
|
|
|
|
2014-12-09 13:23:20 +00:00
|
|
|
SkString onShortName() SK_OVERRIDE {
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
return SkString("pictureshadertile");
|
|
|
|
}
|
|
|
|
|
2014-12-09 13:23:20 +00:00
|
|
|
SkISize onISize() SK_OVERRIDE {
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
return SkISize::Make(800, 600);
|
|
|
|
}
|
|
|
|
|
2014-12-09 13:23:20 +00:00
|
|
|
void onOnceBeforeDraw() SK_OVERRIDE {
|
2014-08-06 20:07:15 +00:00
|
|
|
SkPictureRecorder recorder;
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
SkCanvas* pictureCanvas = recorder.beginRecording(kPictureSize, kPictureSize);
|
2014-12-09 13:23:20 +00:00
|
|
|
draw_scene(pictureCanvas, kPictureSize);
|
2014-08-06 20:07:15 +00:00
|
|
|
SkAutoTUnref<SkPicture> picture(recorder.endRecording());
|
|
|
|
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
SkPoint offset = SkPoint::Make(100, 100);
|
|
|
|
pictureCanvas = recorder.beginRecording(SkRect::MakeXYWH(offset.x(), offset.y(),
|
|
|
|
kPictureSize, kPictureSize));
|
|
|
|
pictureCanvas->translate(offset.x(), offset.y());
|
2014-12-09 13:23:20 +00:00
|
|
|
draw_scene(pictureCanvas, kPictureSize);
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
SkAutoTUnref<SkPicture> offsetPicture(recorder.endRecording());
|
|
|
|
|
2014-08-06 20:07:15 +00:00
|
|
|
for (unsigned i = 0; i < SK_ARRAY_COUNT(tiles); ++i) {
|
|
|
|
SkRect tile = SkRect::MakeXYWH(tiles[i].x * kPictureSize,
|
|
|
|
tiles[i].y * kPictureSize,
|
|
|
|
tiles[i].w * kPictureSize,
|
|
|
|
tiles[i].h * kPictureSize);
|
|
|
|
SkMatrix localMatrix;
|
|
|
|
localMatrix.setTranslate(tiles[i].offsetX * kPictureSize,
|
|
|
|
tiles[i].offsetY * kPictureSize);
|
|
|
|
localMatrix.postScale(kFillSize / (2 * kPictureSize),
|
|
|
|
kFillSize / (2 * kPictureSize));
|
Tweak SkPictureShader's tile semantics.
Currently, the tile offset is added when drawing the picture. This might
have made a tiny bit of sense when the picture was always positioned at
origin, but with a picture cull rect offset things looks really strange.
For example, to specify a tile == the picture cull rect we have to pass
in [-cullrect.x, -cullrect.y, cullrect.width, cullrect.height]. Yikes.
(there's also a bug when not passing a tile, as we use a default tile
== cullrect but don't compensate for the above oddity)
This changes the semantics of the tile offset: it is now subtracted when
drawing the picture tile. As a consequence, one can pass in a tile equal
to the cull rect and get the expected behavior (same when not passing
a tile).
This will require a minor Blink change with the roll, as one client
works around the current behavior:
https://codereview.chromium.org/789503003
R=reed@google.com,robertphillips@google.com
BUG=440046
Review URL: https://codereview.chromium.org/733203005
2014-12-08 19:13:27 +00:00
|
|
|
|
|
|
|
SkPicture* picturePtr = picture.get();
|
|
|
|
SkRect* tilePtr = &tile;
|
|
|
|
|
|
|
|
if (tile == SkRect::MakeWH(kPictureSize, kPictureSize)) {
|
|
|
|
// When the tile == picture bounds, exercise the picture + offset path.
|
|
|
|
picturePtr = offsetPicture.get();
|
|
|
|
tilePtr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fShaders[i].reset(SkShader::CreatePictureShader(picturePtr,
|
2014-12-09 13:23:20 +00:00
|
|
|
SkShader::kRepeat_TileMode,
|
|
|
|
SkShader::kRepeat_TileMode,
|
|
|
|
&localMatrix,
|
|
|
|
tilePtr));
|
2014-08-06 20:07:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 13:23:20 +00:00
|
|
|
void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
2014-08-06 20:07:15 +00:00
|
|
|
canvas->clear(SK_ColorBLACK);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setStyle(SkPaint::kFill_Style);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < SK_ARRAY_COUNT(fShaders); ++i) {
|
|
|
|
paint.setShader(fShaders[i]);
|
|
|
|
|
|
|
|
canvas->save();
|
|
|
|
canvas->translate((i % kRowSize) * kFillSize * 1.1f,
|
|
|
|
(i / kRowSize) * kFillSize * 1.1f);
|
|
|
|
canvas->drawRect(SkRect::MakeWH(kFillSize, kFillSize), paint);
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkAutoTUnref<SkShader> fShaders[SK_ARRAY_COUNT(tiles)];
|
|
|
|
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_GM( return SkNEW(PictureShaderTileGM); )
|