a2b4bdce8c
Revert "SkImageEncoder: simplify API" This reverts commit248ff02331
. Revert "Fix bug: can't convert nullptr -> bool" This reverts commit2cb6cb7218
. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5151 NOTRY=true Change-Id: I5f6414392d6545f74db0b5bb50608d04f053a8ec Reviewed-on: https://skia-review.googlesource.com/5151 Commit-Queue: Hal Canary <halcanary@google.com> Reviewed-by: Hal Canary <halcanary@google.com>
29 lines
643 B
C
29 lines
643 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 SkEncodedFormat_DEFINED
|
|
#define SkEncodedFormat_DEFINED
|
|
|
|
/**
|
|
* Enum describing format of encoded data.
|
|
*/
|
|
enum SkEncodedFormat {
|
|
kUnknown_SkEncodedFormat,
|
|
kBMP_SkEncodedFormat,
|
|
kGIF_SkEncodedFormat,
|
|
kICO_SkEncodedFormat,
|
|
kJPEG_SkEncodedFormat,
|
|
kPNG_SkEncodedFormat,
|
|
kWBMP_SkEncodedFormat,
|
|
kWEBP_SkEncodedFormat,
|
|
kPKM_SkEncodedFormat,
|
|
kKTX_SkEncodedFormat,
|
|
kASTC_SkEncodedFormat,
|
|
kDNG_SkEncodedFormat,
|
|
};
|
|
#endif // SkEncodedFormat_DEFINED
|