b607a8fbf0
Change-Id: Iea274ae52da8b4b87ec55222c856f40a0d88c4e0 Reviewed-on: https://skia-review.googlesource.com/113746 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Ben Wagner <bungeman@google.com> Reviewed-on: https://skia-review.googlesource.com/113944 Reviewed-by: Ben Wagner <bungeman@google.com>
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkAndroidCodec.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkColor.h"
|
|
#include "SkColorSpace.h"
|
|
#include "SkData.h"
|
|
#include "SkEncodedImageFormat.h"
|
|
#include "SkImageEncoder.h"
|
|
#include "SkImageInfo.h"
|
|
#include "SkStream.h"
|
|
#include "Test.h"
|
|
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
DEF_TEST(Codec_recommendedF16, r) {
|
|
// Encode an F16 bitmap. SkEncodeImage will encode this to a true-color PNG
|
|
// with a bit depth of 16. SkAndroidCodec should always recommend F16 for
|
|
// such a PNG.
|
|
SkBitmap bm;
|
|
bm.allocPixels(SkImageInfo::Make(10, 10, kRGBA_F16_SkColorType,
|
|
kPremul_SkAlphaType, SkColorSpace::MakeSRGBLinear()));
|
|
// What is drawn is not important.
|
|
bm.eraseColor(SK_ColorBLUE);
|
|
|
|
SkDynamicMemoryWStream wstream;
|
|
REPORTER_ASSERT(r, SkEncodeImage(&wstream, bm, SkEncodedImageFormat::kPNG, 100));
|
|
auto data = wstream.detachAsData();
|
|
auto androidCodec = SkAndroidCodec::MakeFromData(std::move(data));
|
|
if (!androidCodec) {
|
|
ERRORF(r, "Failed to create SkAndroidCodec");
|
|
return;
|
|
}
|
|
|
|
REPORTER_ASSERT(r, androidCodec->computeOutputColorType(kN32_SkColorType)
|
|
== kRGBA_F16_SkColorType);
|
|
}
|