Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: src/image/SkImage_Codec.cpp

Issue 461043002: Revert of SkImage_Codec is Lazy (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/core.gypi ('k') | src/image/SkImage_Raster.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2012 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 */
7
8 #include "SkImageDecoder.h"
9 #include "SkImage_Base.h"
10 #include "SkBitmap.h"
11 #include "SkCanvas.h"
12 #include "SkData.h"
13
14 class SkImage_Codec : public SkImage_Base {
15 public:
16 static SkImage* NewEmpty();
17
18 SkImage_Codec(SkData* encodedData, int width, int height);
19 virtual ~SkImage_Codec();
20
21 virtual void onDraw(SkCanvas*, SkScalar, SkScalar, const SkPaint*) const SK_ OVERRIDE;
22 virtual void onDrawRectToRect(SkCanvas*, const SkRect*, const SkRect&,
23 const SkPaint*) const SK_OVERRIDE;
24
25 private:
26 SkData* fEncodedData;
27 SkBitmap fBitmap;
28
29 typedef SkImage_Base INHERITED;
30 };
31
32 ///////////////////////////////////////////////////////////////////////////////
33
34 SkImage_Codec::SkImage_Codec(SkData* data, int width, int height) : INHERITED(wi dth, height) {
35 fEncodedData = data;
36 fEncodedData->ref();
37 }
38
39 SkImage_Codec::~SkImage_Codec() {
40 fEncodedData->unref();
41 }
42
43 void SkImage_Codec::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPai nt* paint) const {
44 if (!fBitmap.pixelRef()) {
45 // todo: this needs to be thread-safe
46 SkBitmap* bitmap = const_cast<SkBitmap*>(&fBitmap);
47 if (!SkImageDecoder::DecodeMemory(fEncodedData->bytes(), fEncodedData->s ize(), bitmap)) {
48 return;
49 }
50 }
51 canvas->drawBitmap(fBitmap, x, y, paint);
52 }
53
54 void SkImage_Codec::onDrawRectToRect(SkCanvas* canvas, const SkRect* src, const SkRect& dst,
55 const SkPaint* paint) const {
56 if (!fBitmap.pixelRef()) {
57 // todo: this needs to be thread-safe
58 SkBitmap* bitmap = const_cast<SkBitmap*>(&fBitmap);
59 if (!SkImageDecoder::DecodeMemory(fEncodedData->bytes(), fEncodedData->s ize(), bitmap)) {
60 return;
61 }
62 }
63 canvas->drawBitmapRectToRect(fBitmap, src, dst, paint);
64 }
65
66 ///////////////////////////////////////////////////////////////////////////////
67
68 SkImage* SkImage::NewEncodedData(SkData* data) {
69 if (NULL == data) {
70 return NULL;
71 }
72
73 SkBitmap bitmap;
74 if (!SkImageDecoder::DecodeMemory(data->bytes(), data->size(), &bitmap, kUnk nown_SkColorType,
75 SkImageDecoder::kDecodeBounds_Mode)) {
76 return NULL;
77 }
78
79 return SkNEW_ARGS(SkImage_Codec, (data, bitmap.width(), bitmap.height()));
80 }
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | src/image/SkImage_Raster.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698