04be2b54ba
This reverts commit db68a426b6
.
Fixes errors in Android and Google3
Bug: b/64077740
Change-Id: I3d2bb1223e4d8ba912ea2b88144aeecc487fce1a
Reviewed-on: https://skia-review.googlesource.com/35701
Commit-Queue: Leon Scroggins <scroggo@google.com>
Reviewed-by: Chong Zhang <chz@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Reviewed-by: Derek Sollenberger <djsollen@google.com>
35 lines
532 B
C
35 lines
532 B
C
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkEncodedImageFormat_DEFINED
|
|
#define SkEncodedImageFormat_DEFINED
|
|
|
|
#include <stdint.h>
|
|
|
|
/**
|
|
* Enum describing format of encoded data.
|
|
*/
|
|
enum class SkEncodedImageFormat {
|
|
#ifdef GOOGLE3
|
|
kUnknown,
|
|
#endif
|
|
kBMP,
|
|
kGIF,
|
|
kICO,
|
|
kJPEG,
|
|
kPNG,
|
|
kWBMP,
|
|
kWEBP,
|
|
kPKM,
|
|
kKTX,
|
|
kASTC,
|
|
kDNG,
|
|
kHEIF,
|
|
};
|
|
|
|
#endif // SkEncodedImageFormat_DEFINED
|