blob: 0c811969baccc54326df276908d20ce5c2be9afb [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
reedbfefc7c2014-06-12 17:40:00 -07007
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#include "SampleCode.h"
9#include "SkView.h"
10#include "SkCanvas.h"
11#include "SkGradientShader.h"
12#include "SkGraphics.h"
13#include "SkImageDecoder.h"
14#include "SkPath.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkRegion.h"
16#include "SkShader.h"
17#include "SkUtils.h"
18#include "SkXfermode.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000019#include "SkColorPriv.h"
20#include "SkColorFilter.h"
21#include "SkTime.h"
22
23static const char* gNames[] = {
24 "/skimages/background_01.png"
25};
26
reed@google.com961ddb02011-05-05 14:03:48 +000027class Filter2View : public SampleView {
reed@android.com8a1c16f2008-12-17 15:59:43 +000028public:
29 SkBitmap* fBitmaps;
30 int fBitmapCount;
31 int fCurrIndex;
32
rmistry@google.comae933ce2012-08-23 18:19:56 +000033 Filter2View() {
reed@android.com8a1c16f2008-12-17 15:59:43 +000034 fBitmapCount = SK_ARRAY_COUNT(gNames)*2;
35 fBitmaps = new SkBitmap[fBitmapCount];
rmistry@google.comae933ce2012-08-23 18:19:56 +000036
reed@android.com8a1c16f2008-12-17 15:59:43 +000037 for (int i = 0; i < fBitmapCount/2; i++) {
reedbfefc7c2014-06-12 17:40:00 -070038 SkImageDecoder::DecodeFile(gNames[i], &fBitmaps[i], kN32_SkColorType,
39 SkImageDecoder::kDecodePixels_Mode, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +000040 }
41 for (int i = fBitmapCount/2; i < fBitmapCount; i++) {
reedbfefc7c2014-06-12 17:40:00 -070042 SkImageDecoder::DecodeFile(gNames[i-fBitmapCount/2], &fBitmaps[i], kRGB_565_SkColorType,
43 SkImageDecoder::kDecodePixels_Mode, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +000044 }
45 fCurrIndex = 0;
rmistry@google.comae933ce2012-08-23 18:19:56 +000046
reed@google.com961ddb02011-05-05 14:03:48 +000047 this->setBGColor(SK_ColorGRAY);
reed@android.com8a1c16f2008-12-17 15:59:43 +000048 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000049
reed@android.com8a1c16f2008-12-17 15:59:43 +000050 virtual ~Filter2View() {
51 delete[] fBitmaps;
52 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000053
reed@android.com8a1c16f2008-12-17 15:59:43 +000054protected:
55 // overrides from SkEventSink
56 virtual bool onQuery(SkEvent* evt) {
57 if (SampleCode::TitleQ(*evt)) {
58 SkString str("Filter/Dither ");
59 str.append(gNames[fCurrIndex]);
60 SampleCode::TitleR(evt, str.c_str());
61 return true;
62 }
63 return this->INHERITED::onQuery(evt);
64 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000065
reed@google.com961ddb02011-05-05 14:03:48 +000066 virtual void onDrawContent(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000067 canvas->translate(SkIntToScalar(10), SkIntToScalar(50));
rmistry@google.comae933ce2012-08-23 18:19:56 +000068
reed@android.com8a1c16f2008-12-17 15:59:43 +000069 const SkScalar W = SkIntToScalar(fBitmaps[0].width() + 1);
70 const SkScalar H = SkIntToScalar(fBitmaps[0].height() + 1);
71 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +000072
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000073 const SkScalar scale = 0.897917f;
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 canvas->scale(SK_Scalar1, scale);
75
76 for (int k = 0; k < 2; k++) {
reed@google.com44699382013-10-31 17:28:30 +000077 paint.setFilterLevel(k == 1 ? SkPaint::kLow_FilterLevel : SkPaint::kNone_FilterLevel);
reed@android.com8a1c16f2008-12-17 15:59:43 +000078 for (int j = 0; j < 2; j++) {
79 paint.setDither(j == 1);
80 for (int i = 0; i < fBitmapCount; i++) {
81 SkScalar x = (k * fBitmapCount + j) * W;
82 SkScalar y = i * H;
reed@google.come1ca7052013-12-17 19:22:07 +000083 x = SkScalarRoundToScalar(x);
84 y = SkScalarRoundToScalar(y);
reed@android.com8a1c16f2008-12-17 15:59:43 +000085 canvas->drawBitmap(fBitmaps[i], x, y, &paint);
86 if (i == 0) {
87 SkPaint p;
88 p.setAntiAlias(true);
89 p.setTextAlign(SkPaint::kCenter_Align);
90 p.setTextSize(SkIntToScalar(18));
91 SkString s("dither=");
92 s.appendS32(paint.isDither());
93 s.append(" filter=");
reed@google.com44699382013-10-31 17:28:30 +000094 s.appendS32(paint.getFilterLevel() != SkPaint::kNone_FilterLevel);
reed@android.com8a1c16f2008-12-17 15:59:43 +000095 canvas->drawText(s.c_str(), s.size(), x + W/2,
96 y - p.getTextSize(), p);
97 }
98 if (k+j == 2) {
99 SkPaint p;
100 p.setAntiAlias(true);
101 p.setTextSize(SkIntToScalar(18));
102 SkString s;
103 s.append(" depth=");
commit-bot@chromium.orga8c18312014-02-17 02:55:57 +0000104 s.appendS32(fBitmaps[i].colorType() == kRGB_565_SkColorType ? 16 : 32);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105 canvas->drawText(s.c_str(), s.size(), x + W + SkIntToScalar(4),
106 y + H/2, p);
107 }
108 }
109 }
110 }
111 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000112
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113private:
reed@google.com961ddb02011-05-05 14:03:48 +0000114 typedef SampleView INHERITED;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000115};
116
117//////////////////////////////////////////////////////////////////////////////
118
119static SkView* MyFactory() { return new Filter2View; }
120static SkViewRegister reg(MyFactory);