2011-12-20 20:58:18 +00:00
|
|
|
/*
|
|
|
|
* 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 "SkColorMatrixFilter.h"
|
|
|
|
|
|
|
|
#define WIDTH 500
|
|
|
|
#define HEIGHT 500
|
|
|
|
|
2012-03-22 14:09:28 +00:00
|
|
|
class SkOnce {
|
|
|
|
public:
|
|
|
|
SkOnce() : fOnce(false) {};
|
|
|
|
|
|
|
|
bool once() const {
|
|
|
|
if (fOnce) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fOnce = true;
|
|
|
|
return true;
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-03-22 14:09:28 +00:00
|
|
|
private:
|
|
|
|
mutable bool fOnce;
|
|
|
|
};
|
|
|
|
|
2012-06-04 19:07:41 +00:00
|
|
|
static void setColorMatrix(SkPaint* paint, const SkColorMatrix& matrix) {
|
|
|
|
paint->setColorFilter(SkNEW_ARGS(SkColorMatrixFilter, (matrix)))->unref();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setArray(SkPaint* paint, const SkScalar array[]) {
|
|
|
|
paint->setColorFilter(SkNEW_ARGS(SkColorMatrixFilter, (array)))->unref();
|
|
|
|
}
|
|
|
|
|
2011-12-20 20:58:18 +00:00
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class ColorMatrixGM : public GM {
|
2012-03-22 14:09:28 +00:00
|
|
|
SkOnce fOnce;
|
|
|
|
void init() {
|
|
|
|
if (fOnce.once()) {
|
|
|
|
fBitmap = createBitmap(64, 64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 20:58:18 +00:00
|
|
|
public:
|
|
|
|
ColorMatrixGM() {
|
|
|
|
this->setBGColor(0xFF808080);
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-12-20 20:58:18 +00:00
|
|
|
protected:
|
|
|
|
virtual SkString onShortName() {
|
|
|
|
return SkString("colormatrix");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual SkISize onISize() {
|
|
|
|
return make_isize(WIDTH, HEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
SkBitmap createBitmap(int width, int height) {
|
|
|
|
SkBitmap bm;
|
|
|
|
bm.setConfig(SkBitmap::kARGB_8888_Config, width, height);
|
|
|
|
bm.allocPixels();
|
|
|
|
SkCanvas canvas(bm);
|
2012-01-03 20:51:57 +00:00
|
|
|
canvas.clear(0x0);
|
2011-12-20 20:58:18 +00:00
|
|
|
for (int y = 0; y < height; ++y) {
|
|
|
|
for (int x = 0; x < width; ++x) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(SkColorSetARGB(255, x * 255 / width, y * 255 / height, 0));
|
2012-04-10 17:42:21 +00:00
|
|
|
canvas.drawRect(SkRect::MakeXYWH(SkIntToScalar(x),
|
|
|
|
SkIntToScalar(y), SK_Scalar1, SK_Scalar1), paint);
|
2011-12-20 20:58:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return bm;
|
|
|
|
}
|
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
2012-03-22 14:09:28 +00:00
|
|
|
this->init();
|
2011-12-20 20:58:18 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
SkColorMatrix matrix;
|
|
|
|
|
|
|
|
matrix.setIdentity();
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 0, 0, &paint);
|
|
|
|
|
|
|
|
matrix.setRotate(SkColorMatrix::kR_Axis, 90);
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 80, 0, &paint);
|
|
|
|
|
|
|
|
matrix.setRotate(SkColorMatrix::kG_Axis, 90);
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 160, 0, &paint);
|
|
|
|
|
|
|
|
matrix.setRotate(SkColorMatrix::kB_Axis, 90);
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 240, 0, &paint);
|
|
|
|
|
|
|
|
matrix.setSaturation(SkFloatToScalar(0.0f));
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 0, 80, &paint);
|
|
|
|
|
|
|
|
matrix.setSaturation(SkFloatToScalar(0.5f));
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 80, 80, &paint);
|
|
|
|
|
|
|
|
matrix.setSaturation(SkFloatToScalar(1.0f));
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 160, 80, &paint);
|
|
|
|
|
|
|
|
matrix.setSaturation(SkFloatToScalar(2.0f));
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 240, 80, &paint);
|
|
|
|
|
|
|
|
matrix.setRGB2YUV();
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 0, 160, &paint);
|
|
|
|
|
|
|
|
matrix.setYUV2RGB();
|
2012-06-04 19:07:41 +00:00
|
|
|
setColorMatrix(&paint, matrix);
|
2011-12-20 20:58:18 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 80, 160, &paint);
|
2012-01-05 18:28:56 +00:00
|
|
|
|
|
|
|
SkScalar s1 = SK_Scalar1;
|
|
|
|
SkScalar s255 = SkIntToScalar(255);
|
|
|
|
// Move red into alpha, set color to white
|
|
|
|
SkScalar data[20] = {
|
|
|
|
0, 0, 0, 0, s255,
|
|
|
|
0, 0, 0, 0, s255,
|
|
|
|
0, 0, 0, 0, s255,
|
|
|
|
s1, 0, 0, 0, 0,
|
|
|
|
};
|
|
|
|
|
2012-06-04 19:07:41 +00:00
|
|
|
setArray(&paint, data);
|
2012-01-05 18:28:56 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 160, 160, &paint);
|
2011-12-20 20:58:18 +00:00
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-12-20 20:58:18 +00:00
|
|
|
private:
|
|
|
|
SkBitmap fBitmap;
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static GM* MyFactory(void*) { return new ColorMatrixGM; }
|
|
|
|
static GMRegistry reg(MyFactory);
|
|
|
|
|
|
|
|
}
|