diff options
author | Derek Sollenberger <djsollen@google.com> | 2011-06-06 17:02:24 -0400 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2011-06-07 14:00:04 -0400 |
commit | 0b15698a8c76bb8abc1b555c1d91892669b4118f (patch) | |
tree | 08732d5fbb7484ce7e10c65c96fb56294053073a /samplecode/SampleRepeatTile.cpp | |
parent | 9770b0f3d2b5d512daac50c2c9561d2c073cd8d2 (diff) | |
download | external_skia-0b15698a8c76bb8abc1b555c1d91892669b4118f.zip external_skia-0b15698a8c76bb8abc1b555c1d91892669b4118f.tar.gz external_skia-0b15698a8c76bb8abc1b555c1d91892669b4118f.tar.bz2 |
Skia Merge (revision 1510)
This CL includes bug fixes and closely mirrors the version of
Skia used in Chrome M13, which is likely to be our baseline for
ICS.
The CL also adds source files for the SampleApp which will allow
us to execute basic skia tests. The SampleApp requires the
utils/views directory in order to run.
Finally, we have included the PDF backend for Skia in order to
experiment with using it to generate PDF files for certain
applications.
Note: The SampleApp and PDF code are not built as part of libskia.
Change-Id: I1895ccfbd8074e25f19148cc7bd1b4af571fb307
Diffstat (limited to 'samplecode/SampleRepeatTile.cpp')
-rw-r--r-- | samplecode/SampleRepeatTile.cpp | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/samplecode/SampleRepeatTile.cpp b/samplecode/SampleRepeatTile.cpp new file mode 100644 index 0000000..9867074 --- /dev/null +++ b/samplecode/SampleRepeatTile.cpp @@ -0,0 +1,86 @@ +#include "SampleCode.h" +#include "SkView.h" +#include "SkCanvas.h" +#include "SkShader.h" +#include "SkKey.h" + +static void make_bitmap(SkBitmap* bm) { + const int W = 100; + const int H = 100; + bm->setConfig(SkBitmap::kARGB_8888_Config, W, H); + bm->allocPixels(); + + SkPaint paint; + SkCanvas canvas(*bm); + canvas.drawColor(SK_ColorWHITE); + + const SkColor colors[] = { + SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorWHITE + }; + + for (int ix = 0; ix < W; ix += 1) { + SkScalar x = SkIntToScalar(ix) + SK_ScalarHalf; + paint.setColor(colors[ix & 3]); + canvas.drawLine(x, 0, x, SkIntToScalar(H - 1), paint); + } + paint.setColor(SK_ColorGRAY); + canvas.drawLine(0, 0, SkIntToScalar(W), 0, paint); +} + +static void make_paint(SkPaint* paint, SkShader::TileMode tm) { + SkBitmap bm; + make_bitmap(&bm); + + SkShader* shader = SkShader::CreateBitmapShader(bm, tm, tm); + paint->setShader(shader)->unref(); +} + +class RepeatTileView : public SampleView { +public: + RepeatTileView() { + this->setBGColor(SK_ColorGRAY); + } + +protected: + // overrides from SkEventSink + virtual bool onQuery(SkEvent* evt) { + if (SampleCode::TitleQ(*evt)) { + SampleCode::TitleR(evt, "RepeatTile"); + return true; + } + return this->INHERITED::onQuery(evt); + } + + virtual void onDrawContent(SkCanvas* canvas) { + SkPaint paint; + make_paint(&paint, SkShader::kRepeat_TileMode); + +// canvas->scale(SK_Scalar1*2, SK_Scalar1); + canvas->translate(SkIntToScalar(100), SkIntToScalar(100)); + canvas->drawPaint(paint); + } + + virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) { + this->inval(NULL); + + return this->INHERITED::onFindClickHandler(x, y); + } + + virtual bool onClick(Click* click) { + return this->INHERITED::onClick(click); + } + + virtual bool handleKey(SkKey key) { + this->inval(NULL); + return true; + } + +private: + typedef SampleView INHERITED; +}; + +////////////////////////////////////////////////////////////////////////////// + +static SkView* MyFactory() { return new RepeatTileView; } +static SkViewRegister reg(MyFactory); + |