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=c4ea949e5fa5a0630dcb6b0204bd498f 5 REG_FIDDLE(Canvas_getContext, 256, 256, false, 0) { draw(SkCanvas * canvas)6void draw(SkCanvas* canvas) { 7 if (auto context = canvas->recordingContext()) { 8 if (context->asDirectContext()) { 9 canvas->clear(SK_ColorRED); 10 } else { 11 canvas->clear(SK_ColorGREEN); 12 } 13 } else { 14 canvas->clear(SK_ColorBLUE); 15 } 16 } 17 } // END FIDDLE 18