Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / ImageInfo_colorSpace.cpp
1 // Copyright 2019 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 #include "tools/fiddle/examples.h"
4 // HASH=5602b816d7cf75e3851274ef36a4c10f
5 REG_FIDDLE(ImageInfo_colorSpace, 256, 256, true, 0) {
6 void draw(SkCanvas* canvas) {
7     SkImageInfo info = SkImageInfo::MakeN32(16, 32, kPremul_SkAlphaType,
8             SkColorSpace::MakeSRGBLinear());
9     SkColorSpace* colorSpace = info.colorSpace();
10     SkDebugf("gammaCloseToSRGB: %s  gammaIsLinear: %s  isSRGB: %s\n",
11             colorSpace->gammaCloseToSRGB() ? "true" : "false",
12             colorSpace->gammaIsLinear() ? "true" : "false",
13             colorSpace->isSRGB() ? "true" : "false");
14 }
15 }  // END FIDDLE