HomeSort by relevance Sort by last modified time
    Searched refs:dst_red (Results 1 - 11 of 11) sorted by null

  /gdk/samples/PhotoEditor/jni/
crossprocess.cpp 59 uint32_t dst_red; local
61 dst_red = 255 * r * r * r / k128CubicDouble;
64 dst_red = 255 - 255 * diff_r * diff_r * diff_r / k128CubicDouble;
78 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
sepia.cpp 54 int dst_red = (src->rgba8[0] * 805 + src->rgba8[1] * 1575 + src->rgba8[2] * 387) >> 11; local
58 if (dst_red > 255) {
59 dst_red = 255;
68 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
colortemp.cpp 75 int32_t dst_red = src_red + ((curve[src_red] * icsr) >> 15); local
79 int rgb_max = MAX3(dst_red, dst_green, dst_blue);
82 dst_red = dst_red * invmax >> 8;
87 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
backlight.cpp 82 int32_t dst_red = src_red + (diff_red >> 16); local
86 if (dst_red > 255) {
87 dst_red = 255;
96 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
tint.cpp 67 int32_t dst_red = (avg + tint_red) >> kShiftBits; local
71 if (dst_red > 255) {
72 dst_red = 255;
81 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
saturate.cpp 43 int dst_red = kv + (((src->rgba8[0] - kv) * scale) >> 8); local
47 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
95 int dst_red = de * rmap[r] >> 8; local
99 int rgb_max = MAX3(dst_red, dst_green, dst_blue);
102 dst_red = dst_red * invmax >> 8;
107 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
negative.cpp 55 uint32_t dst_red = 0xff - src->rgba8[0]; local
60 *dst = (src_alpha << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
duotone.cpp 79 int dst_red = r_table[energy]; local
83 *dst = (src->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
fisheye.cpp 39 int dst_red = p00[0] * coef1 + p10[0] * coef2 + p01[0] * coef3 + p11[0] * coef4; local
42 if (dst_red > 255) {
43 dst_red = 255;
53 return p00[3] << 24 | (dst_blue << 16) | (dst_green << 8) | dst_red;
heq.cpp 237 uint32_t dst_red = (sp->rgba8[0] * dst_energy) >> kShiftBits; local
240 dp->rgba32 = (sp->rgba8[3] << 24) | (dst_blue << 16) | (dst_green << 8) | dst_red;
warmify.cpp 90 int dst_red = (map[src->rgba8[0]] & 0xFF0000) >> 16; local
94 *dst = (src->rgba8[3] << 24) | dst_blue | dst_green | dst_red;

Completed in 197 milliseconds