5d0b150257
This change resized the canvas for some GM cases. It is better to show the visual difference in viewer.html for these cases after the CL applied. BUG=skia:2375 R=reed@google.com, djsollen@google.com Author: yunchao.he@intel.com Review URL: https://codereview.chromium.org/221953002 git-svn-id: http://skia.googlecode.com/svn/trunk@14177 2bbb7eff-a529-9590-31e7-b0007b416f81
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/*
|
|
* Copyright 2011 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"
|
|
#include "SkPicture.h"
|
|
|
|
static void draw_content(SkCanvas* canvas) {
|
|
SkImageInfo info = canvas->imageInfo();
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
canvas->drawCircle(SkScalarHalf(info.width()), SkScalarHalf(info.height()),
|
|
SkScalarHalf(info.width()), paint);
|
|
}
|
|
|
|
class PeekPixelsGM : public skiagm::GM {
|
|
public:
|
|
PeekPixelsGM() {}
|
|
|
|
protected:
|
|
virtual SkString onShortName() SK_OVERRIDE {
|
|
return SkString("peekpixels");
|
|
}
|
|
|
|
virtual SkISize onISize() SK_OVERRIDE {
|
|
return SkISize::Make(360, 120);
|
|
}
|
|
|
|
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
|
|
SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
|
|
if (surface.get()) {
|
|
SkCanvas* surfCanvas = surface->getCanvas();
|
|
|
|
draw_content(surfCanvas);
|
|
SkBitmap bitmap;
|
|
|
|
// test peekPixels
|
|
{
|
|
SkImageInfo info;
|
|
size_t rowBytes;
|
|
const void* addr = surfCanvas->peekPixels(&info, &rowBytes);
|
|
if (addr && bitmap.installPixels(info, const_cast<void*>(addr),
|
|
rowBytes, NULL, NULL)) {
|
|
canvas->drawBitmap(bitmap, 0, 0, NULL);
|
|
}
|
|
}
|
|
|
|
// test ROCanvasPixels
|
|
canvas->translate(120, 0);
|
|
SkAutoROCanvasPixels ropixels(surfCanvas);
|
|
if (ropixels.asROBitmap(&bitmap)) {
|
|
canvas->drawBitmap(bitmap, 0, 0, NULL);
|
|
}
|
|
|
|
// test Surface
|
|
canvas->translate(120, 0);
|
|
surface->draw(canvas, 0, 0, NULL);
|
|
}
|
|
}
|
|
|
|
virtual uint32_t onGetFlags() const {
|
|
// we explicitly test peekPixels and readPixels, neither of which
|
|
// return something for a picture-backed canvas, so we skip that test.
|
|
return kSkipPicture_Flag;
|
|
}
|
|
|
|
private:
|
|
typedef skiagm::GM INHERITED;
|
|
};
|
|
|
|
DEF_GM( return SkNEW(PeekPixelsGM); )
|