OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sk_color_set_argb
(Results
1 - 3
of
3
) sorted by null
/external/skia/experimental/c-api-example/
skia-c-example.c
37
sk_paint_set_color(fill,
sk_color_set_argb
(0xFF, 0x00, 0x00, 0xFF));
40
sk_paint_set_color(fill,
sk_color_set_argb
(0xFF, 0x00, 0xFF, 0xFF));
49
sk_paint_set_color(stroke,
sk_color_set_argb
(0xFF, 0xFF, 0x00, 0x00));
61
sk_paint_set_color(fill,
sk_color_set_argb
(0x80, 0x00, 0xFF, 0x00));
/external/skia/tests/
CTest.cpp
26
(sk_color_t)
sk_color_set_argb
(0xFF, 0x00, 0x00, 0xFF),
27
(sk_color_t)
sk_color_set_argb
(0xFF, 0x00, 0xFF, 0x00)
72
sk_paint_set_color(paint,
sk_color_set_argb
(0xFF, 0xFF, 0xFF, 0xFF));
77
sk_paint_set_color(paint,
sk_color_set_argb
(0x80, 0x80, 0x80, 0x80));
/external/skia/include/c/
sk_types.h
37
#define
sk_color_set_argb
(a, r, g, b) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
macro
Completed in 101 milliseconds