Home
last modified time | relevance | path

Searched refs:RGBA (Results 1 – 25 of 41) sorted by relevance

12

/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/
A Danim_dump.c106 buffer.u.RGBA.rgba = image.frames[i].rgba; in main()
107 buffer.u.RGBA.stride = buffer.width * sizeof(uint32_t); in main()
108 buffer.u.RGBA.size = buffer.u.RGBA.stride * buffer.height; in main()
A Ddwebp.c137 output_buffer->u.RGBA.stride = stride; in AllocateExternalBuffer()
138 output_buffer->u.RGBA.size = stride * h; in AllocateExternalBuffer()
139 output_buffer->u.RGBA.rgba = external_buffer; in AllocateExternalBuffer()
237 else if (!strcmp(fmt, "RGBA")) format = RGBA; in main()
350 case RGBA: output_buffer->colorspace = MODE_RGBA; break; in main()
A Dvwebp.c145 line = rgba->u.RGBA.rgba; in ApplyColorProfile()
146 for (i = 0; i < rgba->height; ++i, line += rgba->u.RGBA.stride) { in ApplyColorProfile()
369 glPixelStorei(GL_UNPACK_ROW_LENGTH, pic->u.RGBA.stride / 4); in HandleDisplay()
393 (GLvoid*)pic->u.RGBA.rgba); in HandleDisplay()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/
A Dimage_enc.c148 uint8_t* const rgb = buffer->u.RGBA.rgba; in WebPWritePNG()
149 const int stride = buffer->u.RGBA.stride; in WebPWritePNG()
187 png_bytep row = buffer->u.RGBA.rgba; in WebPWritePNG()
188 const int stride = buffer->u.RGBA.stride; in WebPWritePNG()
227 const uint8_t* row = buffer->u.RGBA.rgba; in WritePPMPAM()
265 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWrite16bAsPGM()
266 const int stride = buffer->u.RGBA.stride; in WebPWrite16bAsPGM()
300 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWriteBMP()
301 const int stride = buffer->u.RGBA.stride; in WebPWriteBMP()
367 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWriteTIFF()
[all …]
A Dwebpdec.c194 output_buffer->u.RGBA.rgba = (uint8_t*)pic->argb; in ReadWebP()
195 output_buffer->u.RGBA.stride = pic->argb_stride * sizeof(uint32_t); in ReadWebP()
196 output_buffer->u.RGBA.size = output_buffer->u.RGBA.stride * pic->height; in ReadWebP()
A Dimage_enc.h41 RGB, RGBA, BGR, BGRA, ARGB, enumerator
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/
A Dwebp_to_sdl.c82 output->u.RGBA.rgba = surface->pixels; in WebpToSDL()
83 output->u.RGBA.stride = surface->pitch; in WebpToSDL()
84 output->u.RGBA.size = surface->pitch * surface->h; in WebpToSDL()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/win_dib/
A DREADME.Tiffile3 I attached a file that uses RGBA interface (tif_getimage.c) to read a tiff
7 converted to RGBA, thus taking up 32x as much memory as needed (4 bytes per
11 routines of the RGBA interface to just copy the data from the input raster
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/
A Dbuffer_dec.c75 const WebPRGBABuffer* const buf = &buffer->u.RGBA; in CheckDecBuffer()
144 WebPRGBABuffer* const buf = &buffer->u.RGBA; in AllocateBuffer()
158 WebPRGBABuffer* const buf = &buffer->u.RGBA; in WebPFlipBuffer()
282 const WebPRGBABuffer* const src = &src_buf->u.RGBA; in WebPCopyDecBufferPixels()
283 const WebPRGBABuffer* const dst = &dst_buf->u.RGBA; in WebPCopyDecBufferPixels()
A Dio_dec.c49 WebPRGBABuffer* const buf = &output->u.RGBA; in EmitSampledRGB()
64 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in EmitFancyRGB()
187 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in EmitAlphaRGB()
211 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in EmitAlphaRGBA4444()
358 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in ExportRGB()
405 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in ExportAlpha()
433 const WebPRGBABuffer* const buf = &p->output->u.RGBA; in ExportAlphaRGBA4444()
A Didec_dec.c705 idec->output_.u.RGBA.rgba = output_buffer; in WebPINewRGB()
706 idec->output_.u.RGBA.stride = output_stride; in WebPINewRGB()
707 idec->output_.u.RGBA.size = output_buffer_size; in WebPINewRGB()
860 if (stride != NULL) *stride = src->u.RGBA.stride; in WebPIDecGetRGB()
862 return src->u.RGBA.rgba; in WebPIDecGetRGB()
A Dwebp_dec.c540 buf.u.RGBA.rgba = rgba; in DecodeIntoRGBABuffer()
541 buf.u.RGBA.stride = stride; in DecodeIntoRGBABuffer()
542 buf.u.RGBA.size = size; in DecodeIntoRGBABuffer()
630 return WebPIsRGBMode(mode) ? output.u.RGBA.rgba : output.u.YUVA.y; in Decode()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtiffconf.h.in103 /* Treat extra sample as alpha (default enabled). The RGBA interface will
105 packages produce RGBA files but don't mark the alpha properly. */
A Dtiffconf.h.cmake.in106 /* Treat extra sample as alpha (default enabled). The RGBA interface will
108 packages produce RGBA files but don't mark the alpha properly. */
A Dtif_config.h.in19 /* Treat extra sample as alpha (default enabled). The RGBA interface will
21 packages produce RGBA files but don't mark the alpha properly. */
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngsuite/
A DREADME41 basn6a08.png 8-bit RGBA
42 basn6a16.png 16-bit RGBA
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/
A DSConstruct60 …'the RGBA interface will treat a fourth sample with no EXTRASAMPLE_ value as being ASSOCALPHA. Man…
A Dnmake.opt103 # no EXTRASAMPLE_ value as being ASSOCALPHA. Many packages produce RGBA
/AliOS-Things-master/components/SDL2/src/image/external/
A Dtiff-4.0.9-win32config.patch96 +/* Treat extra sample as alpha (default enabled). The RGBA interface will
98 + packages produce RGBA files but don't mark the alpha properly. */
623 +/* Treat extra sample as alpha (default enabled). The RGBA interface will
625 + packages produce RGBA files but don't mark the alpha properly. */
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A DREADME216 (in RGBA format) without any loss. The -q quality parameter will in this case
346 -pam ......... save the raw RGBA samples as a color PAM
655 There are variants for decoding in BGR/RGBA/ARGB/BGRA order, along with
741 config.output.u.RGBA.rgba = (uint8_t*) memory_buffer;
742 config.output.u.RGBA.stride = scanline_stride;
743 config.output.u.RGBA.size = total_size_of_the_memory_buffer;
767 // F) Decoded image is now in config.output (and config.output.u.RGBA).
/AliOS-Things-master/components/SDL2/src/image/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/
A Ddecode.h211 WebPRGBABuffer RGBA; member
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/
A Ddecode.h211 WebPRGBABuffer RGBA; member
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/webp/
A Ddecode.h211 WebPRGBABuffer RGBA; member
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/mux/
A Danim_encode.c1434 config.output.u.RGBA.rgba = (uint8_t*)sub_image.argb; in DecodeFrameOntoCanvas()
1435 config.output.u.RGBA.stride = sub_image.argb_stride * 4; in DecodeFrameOntoCanvas()
1436 config.output.u.RGBA.size = config.output.u.RGBA.stride * sub_image.height; in DecodeFrameOntoCanvas()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/pds/
A DREADME38 store it in a big array, convert it to RGBA, or draw it directly to the

Completed in 29 milliseconds

12