Home
last modified time | relevance | path

Searched refs:rgba (Results 1 – 25 of 43) sorted by relevance

12

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/
A Draw_decode.c133 uint32 rgba = buffer[adjusted_pixel]; in check_rgba_pixel() local
135 if( TIFFGetR(rgba) >= (uint32) min_red && in check_rgba_pixel()
136 TIFFGetR(rgba) <= (uint32) max_red && in check_rgba_pixel()
137 TIFFGetG(rgba) >= (uint32) min_green && in check_rgba_pixel()
138 TIFFGetG(rgba) <= (uint32) max_green && in check_rgba_pixel()
139 TIFFGetB(rgba) >= (uint32) min_blue && in check_rgba_pixel()
140 TIFFGetB(rgba) <= (uint32) max_blue && in check_rgba_pixel()
148 TIFFGetR(rgba), min_red, max_red, in check_rgba_pixel()
149 TIFFGetG(rgba), min_green, max_green, in check_rgba_pixel()
150 TIFFGetB(rgba), min_blue, max_blue, in check_rgba_pixel()
[all …]
/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()
187 png_bytep row = buffer->u.RGBA.rgba; in WebPWritePNG()
227 const uint8_t* row = buffer->u.RGBA.rgba; in WritePPMPAM()
265 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWrite16bAsPGM() local
277 rgba += stride; in WebPWrite16bAsPGM()
300 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWriteBMP() local
338 if (fwrite(rgba, line_size, 1, fout) != 1) { in WebPWriteBMP()
348 rgba += stride; in WebPWriteBMP()
367 const uint8_t* rgba = buffer->u.RGBA.rgba; in WebPWriteTIFF() local
423 if (fwrite(rgba, bytes_per_px, width, fout) != width) { in WebPWriteTIFF()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/
A Danim_util.c75 frames[i].rgba = mem + i * rgba_size; in AllocateFrames()
95 static void ZeroFillCanvas(uint8_t* rgba, in ZeroFillCanvas() argument
107 memset(rgba, 0, width * kNumChannels); in ZeroFillFrameRect()
108 rgba += rgba_stride; in ZeroFillFrameRect()
141 while (rgba < rgba_end) { in CleanupTransparentPixels()
142 const uint8_t alpha = (*rgba >> 24) & 0xff; in CleanupTransparentPixels()
144 *rgba = 0; in CleanupTransparentPixels()
146 ++rgba; in CleanupTransparentPixels()
189 row = (const char*)rgba; in DumpFrame()
259 curr_rgba = curr_frame->rgba; in ReadAnimatedWebP()
[all …]
A Dvwebp.c105 WebPDecBuffer* const rgba) { in ApplyColorProfile() argument
117 if (profile == NULL || rgba == NULL) return 0; in ApplyColorProfile()
145 line = rgba->u.RGBA.rgba; in ApplyColorProfile()
146 for (i = 0; i < rgba->height; ++i, line += rgba->u.RGBA.stride) { in ApplyColorProfile()
147 qcms_transform_data(transform, line, line, rgba->width); in ApplyColorProfile()
158 (void)rgba; in ApplyColorProfile()
393 (GLvoid*)pic->u.RGBA.rgba); in HandleDisplay()
A Danim_diff.c82 const uint8_t* const rgba1 = frame1->rgba; in MinimizeAnimationFrames()
83 const uint8_t* const rgba2 = frame2->rgba; in MinimizeAnimationFrames()
166 const uint8_t* const rgba1 = img1->frames[i].rgba; in CompareAnimatedImagePair()
167 const uint8_t* const rgba2 = img2->frames[i].rgba; in CompareAnimatedImagePair()
A Danim_dump.c106 buffer.u.RGBA.rgba = image.frames[i].rgba; in main()
A Danim_util.h31 uint8_t* rgba; // Decoded and reconstructed full frame. member
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dlossless.c511 VP8LConvertBGRAToRGB(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
514 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
517 VP8LConvertBGRAToRGBA(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
518 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
521 VP8LConvertBGRAToBGR(in_data, num_pixels, rgba); in VP8LConvertFromBGRA()
524 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
527 CopyOrSwap(in_data, num_pixels, rgba, 1); in VP8LConvertFromBGRA()
528 WebPApplyAlphaMultiply(rgba, 0, num_pixels, 1, 0); in VP8LConvertFromBGRA()
531 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
534 CopyOrSwap(in_data, num_pixels, rgba, 0); in VP8LConvertFromBGRA()
[all …]
A Dalpha_processing_neon.c42 static void ApplyAlphaMultiply_NEON(uint8_t* rgba, int alpha_first, in ApplyAlphaMultiply_NEON() argument
46 uint32_t* const rgbx = (uint32_t*)rgba; in ApplyAlphaMultiply_NEON()
64 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); in ApplyAlphaMultiply_NEON()
65 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3); in ApplyAlphaMultiply_NEON()
74 rgba += stride; in ApplyAlphaMultiply_NEON()
A Dupsampling_mips_dsp_r2.c121 uint8_t* const rgba) { in YuvToRgba() argument
124 rgba[0] = r; in YuvToRgba()
125 rgba[1] = g; in YuvToRgba()
126 rgba[2] = b; in YuvToRgba()
127 rgba[3] = 0xff; in YuvToRgba()
A Dyuv.h141 uint8_t* const rgba) { in VP8YuvToRgba() argument
142 VP8YuvToRgb(y, u, v, rgba); in VP8YuvToRgba()
143 rgba[3] = 0xff; in VP8YuvToRgba()
A Dalpha_processing_sse2.c177 static void ApplyAlphaMultiply_SSE2(uint8_t* rgba, int alpha_first, in ApplyAlphaMultiply_SSE2() argument
184 uint32_t* const rgbx = (uint32_t*)rgba; in ApplyAlphaMultiply_SSE2()
197 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); in ApplyAlphaMultiply_SSE2()
198 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3); in ApplyAlphaMultiply_SSE2()
207 rgba += stride; in ApplyAlphaMultiply_SSE2()
A Dalpha_processing.c224 static void ApplyAlphaMultiply_C(uint8_t* rgba, int alpha_first, in ApplyAlphaMultiply_C() argument
227 uint8_t* const rgb = rgba + (alpha_first ? 1 : 0); in ApplyAlphaMultiply_C()
228 const uint8_t* const alpha = rgba + (alpha_first ? 0 : 3); in ApplyAlphaMultiply_C()
239 rgba += stride; in ApplyAlphaMultiply_C()
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/
A Dtabs.css37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
A Ddoxygen.css168 -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
432 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
434 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
438 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
442 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
461 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
465 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
470 -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
651 -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
652 -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/
A Dbuffer_dec.c81 ok &= (buf->rgba != NULL); in CheckDecBuffer()
145 buf->rgba = output; in AllocateBuffer()
159 buf->rgba += (buffer->height - 1) * buf->stride; in WebPFlipBuffer()
284 WebPCopyPlane(src->rgba, src->stride, dst->rgba, dst->stride, in WebPCopyDecBufferPixels()
A Dio_dec.c50 uint8_t* const dst = buf->rgba + io->mb_y * buf->stride; in EmitSampledRGB()
65 uint8_t* dst = buf->rgba + io->mb_y * buf->stride; in EmitFancyRGB()
190 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGB()
214 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGBA4444()
359 uint8_t* dst = buf->rgba + y_pos * buf->stride; in ExportRGB()
406 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlpha()
434 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlphaRGBA4444()
A Dwebp_dec.c529 uint8_t* const rgba, in DecodeIntoRGBABuffer() argument
533 if (rgba == NULL) { in DecodeIntoRGBABuffer()
540 buf.u.RGBA.rgba = rgba; in DecodeIntoRGBABuffer()
547 return rgba; in DecodeIntoRGBABuffer()
630 return WebPIsRGBMode(mode) ? output.u.RGBA.rgba : output.u.YUVA.y; in Decode()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/
A Dpicture_csp_enc.c1169 const uint8_t* rgba, int rgba_stride) { in WebPPictureImportBGRA() argument
1170 return (picture != NULL && rgba != NULL) in WebPPictureImportBGRA()
1171 ? Import(picture, rgba, rgba_stride, 4, 1, 1) in WebPPictureImportBGRA()
1177 const uint8_t* rgba, int rgba_stride) { in WebPPictureImportBGRX() argument
1178 return (picture != NULL && rgba != NULL) in WebPPictureImportBGRX()
1179 ? Import(picture, rgba, rgba_stride, 4, 1, 0) in WebPPictureImportBGRX()
1193 const uint8_t* rgba, int rgba_stride) { in WebPPictureImportRGBA() argument
1194 return (picture != NULL && rgba != NULL) in WebPPictureImportRGBA()
1195 ? Import(picture, rgba, rgba_stride, 4, 0, 1) in WebPPictureImportRGBA()
1201 return (picture != NULL && rgba != NULL) in WebPPictureImportRGBX()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/webp/
A Dencode.h55 WEBP_EXTERN size_t WebPEncodeRGBA(const uint8_t* rgba,
71 WEBP_EXTERN size_t WebPEncodeLosslessRGBA(const uint8_t* rgba,
461 WebPPicture* picture, const uint8_t* rgba, int rgba_stride);
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/webp/
A Dencode.h55 WEBP_EXTERN size_t WebPEncodeRGBA(const uint8_t* rgba,
71 WEBP_EXTERN size_t WebPEncodeLosslessRGBA(const uint8_t* rgba,
461 WebPPicture* picture, const uint8_t* rgba, int rgba_stride);
/AliOS-Things-master/components/SDL2/src/image/Xcode/Frameworks/webp.framework/Versions/A/Headers/webp/
A Dencode.h55 WEBP_EXTERN size_t WebPEncodeRGBA(const uint8_t* rgba,
71 WEBP_EXTERN size_t WebPEncodeLosslessRGBA(const uint8_t* rgba,
461 WebPPicture* picture, const uint8_t* rgba, int rgba_stride);
/AliOS-Things-master/documentation/doxygen/style/
A Ddoxygen-custom.css139 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
351 -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
693 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
696 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
722 box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
726 -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
858 border-left: 1px solid rgba(0,0,0,0.05);
1006 box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
1106 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
1606 border-color: rgba(255, 255, 255, 0);
[all …]
/AliOS-Things-master/solutions/miniapp_agent_demo/miniapp/pages/netCfg/
A DnetCfg.acss4 background-color: rgba(0, 0, 0, 0.5);
/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()

Completed in 37 milliseconds

12