Lines Matching refs:uchar4
196 * Pack floating point (0-1) RGB values into a uchar4. The alpha component is
203 * @return uchar4
205 _RS_RUNTIME uchar4 __attribute__((const, overloadable)) rsPackColorTo8888(float r, float g, float b…
208 * Pack floating point (0-1) RGBA values into a uchar4.
215 * @return uchar4
217 _RS_RUNTIME uchar4 __attribute__((const, overloadable)) rsPackColorTo8888(float r, float g, float b…
220 * Pack floating point (0-1) RGB values into a uchar4. The alpha component is
225 * @return uchar4
227 _RS_RUNTIME uchar4 __attribute__((const, overloadable)) rsPackColorTo8888(float3 color);
230 * Pack floating point (0-1) RGBA values into a uchar4.
234 * @return uchar4
236 _RS_RUNTIME uchar4 __attribute__((const, overloadable)) rsPackColorTo8888(float4 color);
239 * Unpack a uchar4 color to float4. The resulting float range will be (0-1).
245 _RS_RUNTIME float4 __attribute__((const)) rsUnpackColor8888(uchar4 c);
247 _RS_RUNTIME uchar4 __attribute__((const, overloadable)) rsYuvToRGBA_uchar4(uchar y, uchar u, uchar …