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

Side by Side Diff: src/codec/SkRawAdapterCodec.cpp

Issue 1520403003: Prototype of RAW decoding in Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix bug in transferBuffer. Created 4 years, 11 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
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
scroggo 2016/01/20 18:13:36 nit: 2016.... I think? I don't know the rules for
yujieqin 2016/01/20 21:42:19 Done.
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 "SkCodec.h"
9 #include "SkCodecPriv.h"
10 #include "SkRawAdapterCodec.h"
11
12 SkRawAdapterCodec::SkRawAdapterCodec(SkRawCodec* codec)
13 : INHERITED(codec)
14 {}
15
16 SkISize SkRawAdapterCodec::onGetSampledDimensions(int sampleSize) const {
17 float scale = 1.f / static_cast<float>(sampleSize);
18 return this->codec()->getScaledDimensions(scale);
19 }
20
21 SkCodec::Result SkRawAdapterCodec::onGetAndroidPixels(
22 const SkImageInfo& info, void* pixels, size_t rowBytes,
23 const AndroidOptions& options) {
24 SkCodec::Options codecOptions;
25 codecOptions.fZeroInitialized = options.fZeroInitialized;
26 codecOptions.fSubset = options.fSubset;
27 return this->codec()->getPixels(
28 info, pixels, rowBytes, &codecOptions, options.fColorPtr,
29 options.fColorCount);
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698