blob: 67d69b24b19361395839bf2df70e5db820efb3e6 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=2a3782c33f04ed17a725d0e449c6f7c3
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Paint_refDrawLooper, 256, 256, true, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
Mike Reedb7dad442019-07-22 14:51:10 -04007#ifdef SK_SUPPORT_LEGACY_DRAWLOOPER
Hal Canary87515122019-03-15 14:22:51 -04008 SkPaint paint1, paint2;
9 SkLayerDrawLooper::Builder looperBuilder;
10 paint1.setDrawLooper(looperBuilder.detach());
11 SkDebugf("draw looper unique: %s\n", paint1.getDrawLooper()->unique() ? "true" : "false");
12 paint2.setDrawLooper(paint1.refDrawLooper());
13 SkDebugf("draw looper unique: %s\n", paint1.getDrawLooper()->unique() ? "true" : "false");
Mike Reedb7dad442019-07-22 14:51:10 -040014#endif
Hal Canary87515122019-03-15 14:22:51 -040015}
16} // END FIDDLE