Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
Paint_setColor4f.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Paint_setColor4f, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Paint_setColor4f  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Paint_setColor4f.cpp.

5 {
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
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void setColor(SkColor color)
Definition SkPaint.cpp:119
void setColor4f(const SkColor4f &color, SkColorSpace *colorSpace=nullptr)
Definition SkPaint.h:253