83f23d87f1
This reverts commit 874423a81b5bc2541c7397e6ab00d5e7c9fdaf98. TBR=scroggo Author: reed@google.com Review URL: https://codereview.chromium.org/288313009 git-svn-id: http://skia.googlecode.com/svn/trunk@14842 2bbb7eff-a529-9590-31e7-b0007b416f81
107 lines
3.1 KiB
C++
107 lines
3.1 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
*/
|
|
|
|
#include "SkExample.h"
|
|
|
|
#include "SkApplication.h"
|
|
#include "SkDraw.h"
|
|
#include "SkGradientShader.h"
|
|
#include "SkGraphics.h"
|
|
|
|
class HelloSkia : public SkExample {
|
|
public:
|
|
HelloSkia(SkExampleWindow* window) : SkExample(window) {
|
|
fName = "HelloSkia";
|
|
fBGColor = SK_ColorWHITE;
|
|
fRotationAngle = SkIntToScalar(0);
|
|
|
|
fWindow->setupBackend(SkExampleWindow::kGPU_DeviceType);
|
|
// Another option is software rendering:
|
|
// fWindow->setupBackend(SkExampleWindow::kRaster_DeviceType);
|
|
}
|
|
|
|
protected:
|
|
void draw(SkCanvas* canvas) {
|
|
// Clear background
|
|
canvas->drawColor(fBGColor);
|
|
|
|
SkPaint paint;
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
// Draw a rectangle with blue paint
|
|
SkRect rect = {
|
|
SkIntToScalar(10), SkIntToScalar(10),
|
|
SkIntToScalar(128), SkIntToScalar(128)
|
|
};
|
|
canvas->drawRect(rect, paint);
|
|
|
|
// Set up a linear gradient and draw a circle
|
|
{
|
|
SkPoint linearPoints[] = {
|
|
{SkIntToScalar(0), SkIntToScalar(0)},
|
|
{SkIntToScalar(300), SkIntToScalar(300)}
|
|
};
|
|
SkColor linearColors[] = {SK_ColorGREEN, SK_ColorBLACK};
|
|
|
|
SkShader* shader = SkGradientShader::CreateLinear(
|
|
linearPoints, linearColors, NULL, 2,
|
|
SkShader::kMirror_TileMode);
|
|
SkAutoUnref shader_deleter(shader);
|
|
|
|
paint.setShader(shader);
|
|
paint.setFlags(SkPaint::kAntiAlias_Flag);
|
|
|
|
canvas->drawCircle(SkIntToScalar(200), SkIntToScalar(200),
|
|
SkIntToScalar(64), paint);
|
|
|
|
// Detach shader
|
|
paint.setShader(NULL);
|
|
}
|
|
|
|
// Draw a message with a nice black paint.
|
|
paint.setFlags(
|
|
SkPaint::kAntiAlias_Flag |
|
|
SkPaint::kSubpixelText_Flag | // ... avoid waggly text when rotating.
|
|
SkPaint::kUnderlineText_Flag);
|
|
paint.setColor(SK_ColorBLACK);
|
|
paint.setTextSize(SkIntToScalar(20));
|
|
|
|
canvas->save();
|
|
|
|
static const char message[] = "Hello Skia!!!";
|
|
|
|
// Translate and rotate
|
|
canvas->translate(SkIntToScalar(300), SkIntToScalar(300));
|
|
fRotationAngle += SkDoubleToScalar(0.2);
|
|
if (fRotationAngle > SkDoubleToScalar(360.0)) {
|
|
fRotationAngle -= SkDoubleToScalar(360.0);
|
|
}
|
|
canvas->rotate(fRotationAngle);
|
|
|
|
// Draw the text:
|
|
canvas->drawText(message, strlen(message), SkIntToScalar(0), SkIntToScalar(0), paint);
|
|
|
|
canvas->restore();
|
|
|
|
// Invalidate the window to force a redraw. Poor man's animation mechanism.
|
|
this->fWindow->inval(NULL);
|
|
}
|
|
|
|
private:
|
|
SkScalar fRotationAngle;
|
|
SkColor fBGColor;
|
|
};
|
|
|
|
static SkExample* MyFactory(SkExampleWindow* window) {
|
|
return new HelloSkia(window);
|
|
}
|
|
|
|
// Register this class as a Skia Example.
|
|
SkExample::Registry registry(MyFactory);
|