Remove unused header SkImageTypes.h
R=reed@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/27281003 git-svn-id: http://skia.googlecode.com/svn/trunk@11815 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
41345b6a4a
commit
8f930ff33e
@ -218,7 +218,6 @@
|
|||||||
'core/SkStrokeRec.h',
|
'core/SkStrokeRec.h',
|
||||||
'core/SkImageDecoder.h',
|
'core/SkImageDecoder.h',
|
||||||
'core/SkTime.h',
|
'core/SkTime.h',
|
||||||
'core/SkImageTypes.h',
|
|
||||||
'core/SkScalarCompare.h',
|
'core/SkScalarCompare.h',
|
||||||
'core/SkPathMeasure.h',
|
'core/SkPathMeasure.h',
|
||||||
'core/SkMaskFilter.h',
|
'core/SkMaskFilter.h',
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2013 Google Inc.
|
|
||||||
*
|
|
||||||
* Use of this source code is governed by a BSD-style license that can be
|
|
||||||
* found in the LICENSE file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef SkImageTypes_DEFINED
|
|
||||||
#define SkImageTypes_DEFINED
|
|
||||||
|
|
||||||
#include "SkTypes.h"
|
|
||||||
|
|
||||||
enum SkColorType {
|
|
||||||
kAlpha_8_SkColorType,
|
|
||||||
kRGB_565_SkColorType,
|
|
||||||
// kRGBA_8888_SkColorType,
|
|
||||||
// kBGRA_8888_SkColorType,
|
|
||||||
kPMColor_SkColorType,
|
|
||||||
|
|
||||||
kLastEnum_SkColorType = kPMColor_SkColorType
|
|
||||||
};
|
|
||||||
|
|
||||||
enum SkAlphaType {
|
|
||||||
// kIgnore_SkAlphaType,
|
|
||||||
kOpaque_SkAlphaType,
|
|
||||||
// kUnpremul_SkAlphaType,
|
|
||||||
kPremul_SkAlphaType,
|
|
||||||
|
|
||||||
kLastEnum_SkAlphaType = kPremul_SkAlphaType
|
|
||||||
};
|
|
||||||
|
|
||||||
struct SkImageInfo {
|
|
||||||
int fWidth;
|
|
||||||
int fHeight;
|
|
||||||
SkColorType fColorType;
|
|
||||||
SkAlphaType fAlphaType;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user