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

Side by Side Diff: include/codec/SkEncodedFormat.h

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, 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
« no previous file with comments | « gyp/piex.gyp ('k') | resources/sample_1mp.dng » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkEncodedFormat_DEFINED 8 #ifndef SkEncodedFormat_DEFINED
9 #define SkEncodedFormat_DEFINED 9 #define SkEncodedFormat_DEFINED
10 10
11 /** 11 /**
12 * Enum describing format of encoded data. 12 * Enum describing format of encoded data.
13 */ 13 */
14 enum SkEncodedFormat { 14 enum SkEncodedFormat {
15 kUnknown_SkEncodedFormat, 15 kUnknown_SkEncodedFormat,
16 kBMP_SkEncodedFormat, 16 kBMP_SkEncodedFormat,
17 kGIF_SkEncodedFormat, 17 kGIF_SkEncodedFormat,
18 kICO_SkEncodedFormat, 18 kICO_SkEncodedFormat,
19 kJPEG_SkEncodedFormat, 19 kJPEG_SkEncodedFormat,
20 kPNG_SkEncodedFormat, 20 kPNG_SkEncodedFormat,
21 kWBMP_SkEncodedFormat, 21 kWBMP_SkEncodedFormat,
22 kWEBP_SkEncodedFormat, 22 kWEBP_SkEncodedFormat,
23 kPKM_SkEncodedFormat, 23 kPKM_SkEncodedFormat,
24 kKTX_SkEncodedFormat, 24 kKTX_SkEncodedFormat,
25 kASTC_SkEncodedFormat, 25 kASTC_SkEncodedFormat,
26 kRAW_SkEncodedFormat,
26 }; 27 };
27 #endif // SkEncodedFormat_DEFINED 28 #endif // SkEncodedFormat_DEFINED
OLDNEW
« no previous file with comments | « gyp/piex.gyp ('k') | resources/sample_1mp.dng » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698