blob: 7ce0ca6cd9e5265f78918dd4fb526cc0c1a2de46 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=fa60859e3d03bdc117a05b32e093a8f1
5REG_FIDDLE(Paint_041, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint green1, green2;
8 green1.setColor4f({0, 1, 0, 1}, nullptr); // R=0 G=1 B=0 A=1
9 green2.setColor(0xFF00FF00); // A=255 R=0 G=255 B=0
10 SkDebugf("green1 %c= green2\n", green1 == green2 ? '=' : '!');
11}
12} // END FIDDLE