• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 /*
3  * Copyright 2011 Google Inc.
4  *
5  * Use of this source code is governed by a BSD-style license that can be
6  * found in the LICENSE file.
7  */
8 #include "SampleCode.h"
9 #include "SkColorPriv.h"
10 #include "SkGradientShader.h"
11 #include "SkView.h"
12 #include "SkCanvas.h"
13 #include "SkUtils.h"
14 
draw_rect(SkCanvas * canvas,const SkRect & r,const SkPaint & p)15 static void draw_rect(SkCanvas* canvas, const SkRect& r, const SkPaint& p) {
16     canvas->drawRect(r, p);
17 
18     SkPaint frame(p);
19     frame.setShader(NULL);
20     frame.setStyle(SkPaint::kStroke_Style);
21     canvas->drawRect(r, frame);
22 }
23 
draw_gradient(SkCanvas * canvas)24 static void draw_gradient(SkCanvas* canvas) {
25     SkRect r = { 0, 0, SkIntToScalar(256), SkIntToScalar(32) };
26     SkPoint pts[] = { { r.fLeft, r.fTop }, { r.fRight, r.fTop } };
27     SkColor colors[] = { 0xFF000000, 0xFFFF0000 };
28     SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2,
29                                                  SkShader::kClamp_TileMode);
30 
31     SkPaint p;
32     p.setShader(s)->unref();
33     draw_rect(canvas, r, p);
34 
35     canvas->translate(0, SkIntToScalar(40));
36     p.setDither(true);
37     draw_rect(canvas, r, p);
38 }
39 
test_pathregion()40 static void test_pathregion() {
41     SkPath path;
42     SkRegion region;
43     path.moveTo(25071800.f, -141823808.f);
44     path.lineTo(25075500.f, -141824000.f);
45     path.lineTo(25075400.f, -141827712.f);
46     path.lineTo(25071810.f, -141827600.f);
47     path.close();
48 
49     SkIRect bounds;
50     path.getBounds().round(&bounds);
51     SkRegion clip(bounds);
52     bool result = region.setPath(path, clip); // <-- !! DOWN !!
53     SkDebugf("----- result %d\n", result);
54 }
55 
make_bitmap()56 static SkBitmap make_bitmap() {
57     SkBitmap bm;
58     SkColorTable* ctable = new SkColorTable(256);
59 
60     SkPMColor* c = ctable->lockColors();
61     for (int i = 0; i < 256; i++) {
62         c[i] = SkPackARGB32(0xFF, i, 0, 0);
63     }
64     ctable->unlockColors(true);
65     bm.setConfig(SkBitmap::kIndex8_Config, 256, 32);
66     bm.allocPixels(ctable);
67     ctable->unref();
68 
69     bm.lockPixels();
70     for (int y = 0; y < bm.height(); y++) {
71         uint8_t* p = bm.getAddr8(0, y);
72         for (int x = 0; x < 256; x++) {
73             p[x] = x;
74         }
75     }
76     bm.unlockPixels();
77     return bm;
78 }
79 
80 class DitherBitmapView : public SampleView {
81     SkBitmap    fBM8;
82     SkBitmap    fBM32;
83 public:
DitherBitmapView()84 	DitherBitmapView() {
85         test_pathregion();
86         fBM8 = make_bitmap();
87         fBM8.copyTo(&fBM32, SkBitmap::kARGB_8888_Config);
88 
89         this->setBGColor(0xFFDDDDDD);
90     }
91 
92 protected:
93     // overrides from SkEventSink
onQuery(SkEvent * evt)94     virtual bool onQuery(SkEvent* evt) {
95         if (SampleCode::TitleQ(*evt)) {
96             SampleCode::TitleR(evt, "DitherBitmap");
97             return true;
98         }
99         return this->INHERITED::onQuery(evt);
100     }
101 
setBitmapOpaque(SkBitmap * bm,bool isOpaque)102     static void setBitmapOpaque(SkBitmap* bm, bool isOpaque) {
103         SkAutoLockPixels alp(*bm);  // needed for ctable
104         bm->setIsOpaque(isOpaque);
105         SkColorTable* ctable = bm->getColorTable();
106         if (ctable) {
107             ctable->setIsOpaque(isOpaque);
108         }
109     }
110 
draw2(SkCanvas * canvas,const SkBitmap & bm)111     static void draw2(SkCanvas* canvas, const SkBitmap& bm) {
112         SkPaint paint;
113         SkBitmap bitmap(bm);
114 
115         setBitmapOpaque(&bitmap, false);
116         paint.setDither(false);
117         canvas->drawBitmap(bitmap, 0, 0, &paint);
118         paint.setDither(true);
119         canvas->drawBitmap(bitmap, 0, SkIntToScalar(bm.height() + 10), &paint);
120 
121         setBitmapOpaque(&bitmap, true);
122         SkScalar x = SkIntToScalar(bm.width() + 10);
123         paint.setDither(false);
124         canvas->drawBitmap(bitmap, x, 0, &paint);
125         paint.setDither(true);
126         canvas->drawBitmap(bitmap, x, SkIntToScalar(bm.height() + 10), &paint);
127     }
128 
onDrawContent(SkCanvas * canvas)129     virtual void onDrawContent(SkCanvas* canvas) {
130         canvas->translate(SkIntToScalar(20), SkIntToScalar(20));
131 
132         draw2(canvas, fBM8);
133         canvas->translate(0, SkIntToScalar(fBM8.height() *3));
134         draw2(canvas, fBM32);
135 
136         canvas->translate(0, SkIntToScalar(fBM8.height() *3));
137         draw_gradient(canvas);
138     }
139 
140 private:
141     typedef SampleView INHERITED;
142 };
143 
144 //////////////////////////////////////////////////////////////////////////////
145 
MyFactory()146 static SkView* MyFactory() { return new DitherBitmapView; }
147 static SkViewRegister reg(MyFactory);
148 
149