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

Side by Side Diff: include/core/SkImageTypes.h

Issue 27281003: Remove unused header SkImageTypes.h (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « gyp/public_headers.gypi ('k') | no next file » | 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 2013 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 SkImageTypes_DEFINED
9 #define SkImageTypes_DEFINED
10
11 #include "SkTypes.h"
12
13 enum SkColorType {
14 kAlpha_8_SkColorType,
15 kRGB_565_SkColorType,
16 // kRGBA_8888_SkColorType,
17 // kBGRA_8888_SkColorType,
18 kPMColor_SkColorType,
19
20 kLastEnum_SkColorType = kPMColor_SkColorType
21 };
22
23 enum SkAlphaType {
24 // kIgnore_SkAlphaType,
25 kOpaque_SkAlphaType,
26 // kUnpremul_SkAlphaType,
27 kPremul_SkAlphaType,
28
29 kLastEnum_SkAlphaType = kPremul_SkAlphaType
30 };
31
32 struct SkImageInfo {
33 int fWidth;
34 int fHeight;
35 SkColorType fColorType;
36 SkAlphaType fAlphaType;
37 };
38
39 #endif
OLDNEW
« no previous file with comments | « gyp/public_headers.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698