OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alpha_first
(Results
1 - 3
of
3
) sorted by null
/external/webp/src/dsp/
upsampling.c
251
static void ApplyAlphaMultiply(uint8_t* rgba, int
alpha_first
,
254
uint8_t* const rgb = rgba + (
alpha_first
? 1 : 0);
255
const uint8_t* const alpha = rgba + (
alpha_first
? 0 : 3);
dsp.h
193
//
alpha_first
should be 0 for argb, 1 for rgba or bgra (where alpha is last).
195
uint8_t* rgba, int
alpha_first
, int w, int h, int stride);
/external/webp/src/dec/
io.c
218
const int
alpha_first
=
local
224
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
239
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
410
const int
alpha_first
=
local
412
uint8_t* dst = base_rgba + (
alpha_first
? 0 : 3);
431
WebPApplyAlphaMultiply(base_rgba,
alpha_first
,
Completed in 876 milliseconds