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

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: Set big endian explicitly for arm Created 4 years, 10 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 | « src/codec/SkRawAdapterCodec.h ('k') | src/codec/SkRawCodec.h » ('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 2016 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 "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
« no previous file with comments | « src/codec/SkRawAdapterCodec.h ('k') | src/codec/SkRawCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698