OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:alpha_first
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/libwebp/dsp/
alpha_processing.c
220
static void ApplyAlphaMultiply(uint8_t* rgba, int
alpha_first
,
223
uint8_t* const rgb = rgba + (
alpha_first
? 1 : 0);
224
const uint8_t* const alpha = rgba + (
alpha_first
? 0 : 3);
dsp.h
239
//
alpha_first
should be 0 for argb, 1 for rgba or bgra (where alpha is last).
241
uint8_t* rgba, int
alpha_first
, int w, int h, int stride);
/external/webp/src/dsp/
alpha_processing.c
220
static void ApplyAlphaMultiply(uint8_t* rgba, int
alpha_first
,
223
uint8_t* const rgb = rgba + (
alpha_first
? 1 : 0);
224
const uint8_t* const alpha = rgba + (
alpha_first
? 0 : 3);
dsp.h
239
//
alpha_first
should be 0 for argb, 1 for rgba or bgra (where alpha is last).
241
uint8_t* rgba, int
alpha_first
, int w, int h, int stride);
/external/chromium_org/third_party/libwebp/dec/
io.c
203
const int
alpha_first
=
local
209
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
224
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
417
const int
alpha_first
=
local
419
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
438
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
/external/webp/src/dec/
io.c
203
const int
alpha_first
=
local
209
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
224
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
417
const int
alpha_first
=
local
419
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
438
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
Completed in 197 milliseconds