blob: 4ec3fb86963d72601e4f8b1499def7b8ceaf2905 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001#if 0 // Disabled until updated to use current API.
2// Copyright 2019 Google LLC.
3// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05004#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04005// HASH=756345484fd48ca0ea7b6cec350f73b8
Hal Canarya7181e7c2019-03-18 16:06:34 -04006REG_FIDDLE(PreMultiplyARGB, 300, 128, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04007void draw(SkCanvas* canvas) {
8 SkPMColor premultiplied = SkPreMultiplyARGB(160, 128, 160, 192);
9 canvas->drawString("Unpremultiplied:", 20, 20, SkPaint());
10 canvas->drawString("alpha=160 red=128 green=160 blue=192", 20, 40, SkPaint());
11 canvas->drawString("Premultiplied:", 20, 80, SkPaint());
12 std::string str = "alpha=" + std::to_string(SkColorGetA(premultiplied));
13 str += " red=" + std::to_string(SkColorGetR(premultiplied));
14 str += " green=" + std::to_string(SkColorGetG(premultiplied));
15 str += " blue=" + std::to_string(SkColorGetB(premultiplied));
16 canvas->drawString(str.c_str(), 20, 100, SkPaint());
17}
18} // END FIDDLE
19#endif // Disabled until updated to use current API.