Lines Matching full:rgba
44 // Conversion between RGBA (red, green, blue alpha)
63 // Starting with an image that has RGBA data for all pixels,
65 // RGBA RGBA RGBA RGBA ... RGBA RGBA
66 // RGBA RGBA RGBA RGBA ... RGBA RGBA
67 // RGBA RGBA RGBA RGBA ... RGBA RGBA
68 // RGBA RGBA RGBA RGBA ... RGBA RGBA
70 // RGBA RGBA RGBA RGBA ... RGBA RGBA
71 // RGBA RGBA RGBA RGBA ... RGBA RGBA
110 // of RGBA pixel data that is visually very similar to the
111 // original RGBA image, by calling reconstructChromaHoriz(),
141 // Convert an array of n RGBA pixels, rgbaIn, to YCA (luminance/chroma/alpha):
154 const Rgba rgbaIn[/*n*/],
155 Rgba ycaOut[/*n*/]);
168 const Rgba ycaIn[/*n+N-1*/],
169 Rgba ycaOut[/*n*/]);
178 const Rgba * const ycaIn[N],
179 Rgba ycaOut[/*n*/]);
191 const Rgba ycaIn[/*n*/],
192 Rgba ycaOut[/*n*/]);
200 const Rgba ycaIn[/*n+N-1*/],
201 Rgba ycaOut[/*n*/]);
209 const Rgba * const ycaIn[N],
210 Rgba ycaOut[/*n*/]);
213 // Convert an array of n YCA (luminance/chroma/alpha) pixels to RGBA.
220 const Rgba ycaIn[/*n*/],
221 Rgba rgbaOut[/*n*/]);
226 // Converting an image from RGBA to YCA, low-pass filtering chroma,
227 // and converting the result back to RGBA can produce pixels with
242 const Rgba * const rgbaIn[3],
243 Rgba rgbaOut[/*n*/]);