Remove unused header SkImageTypes.h
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 16 Oct 2013 17:02:28 +0000 (17:02 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Wed, 16 Oct 2013 17:02:28 +0000 (17:02 +0000)
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

gyp/public_headers.gypi
include/core/SkImageTypes.h [deleted file]

index 17253fa..d563d84 100644 (file)
       'core/SkStrokeRec.h',
       'core/SkImageDecoder.h',
       'core/SkTime.h',
-      'core/SkImageTypes.h',
       'core/SkScalarCompare.h',
       'core/SkPathMeasure.h',
       'core/SkMaskFilter.h',
diff --git a/include/core/SkImageTypes.h b/include/core/SkImageTypes.h
deleted file mode 100644 (file)
index 541c388..0000000
+++ /dev/null
@@ -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