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

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

Issue 1018953003: Add SkEncodedFormat, used by SkCodec. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Just change SkCodec, with TODO for the others. Created 5 years, 9 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 | « include/codec/SkCodec.h ('k') | include/core/SkImageDecoder.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 2015 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 #ifndef SkEncodedFormat_DEFINED
9 #define SkEncodedFormat_DEFINED
10
11 /**
12 * Enum describing format of encoded data.
13 */
14 enum SkEncodedFormat {
15 kUnknown_SkEncodedFormat,
16 kBMP_SkEncodedFormat,
17 kGIF_SkEncodedFormat,
18 kICO_SkEncodedFormat,
19 kJPEG_SkEncodedFormat,
20 kPNG_SkEncodedFormat,
21 kWBMP_SkEncodedFormat,
22 kWEBP_SkEncodedFormat,
23 kPKM_SkEncodedFormat,
24 kKTX_SkEncodedFormat,
25 kASTC_SkEncodedFormat,
26 };
27 #endif // SkEncodedFormat_DEFINED
OLDNEW
« no previous file with comments | « include/codec/SkCodec.h ('k') | include/core/SkImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698