| * Copyright 2011 Google Inc. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| static SkBitmap make_bitmap() { |
| const SkPMColor c[] = { SkPackARGB32(0x80, 0x80, 0, 0) }; |
| SkColorTable* ctable = new SkColorTable(c, SK_ARRAY_COUNT(c)); |
| bm.allocPixels(SkImageInfo::Make(1, 1, kIndex_8_SkColorType, |
| class TinyBitmapGM : public GM { |
| this->setBGColor(0xFFDDDDDD); |
| return SkString("tinybitmap"); |
| virtual SkISize onISize() { return SkISize::Make(100, 100); } |
| virtual void onDraw(SkCanvas* canvas) { |
| SkBitmap bm = make_bitmap(); |
| SkShader::CreateBitmapShader(bm, SkShader::kRepeat_TileMode, |
| SkShader::kMirror_TileMode); |
| paint.setShader(s)->unref(); |
| canvas->drawPaint(paint); |
| ////////////////////////////////////////////////////////////////////////////// |
| static GM* MyFactory(void*) { return new TinyBitmapGM; } |
| static GMRegistry reg(MyFactory); |