HomeSort by relevance Sort by last modified time
    Searched refs:has_alpha (Results 1 - 25 of 31) sorted by null

1 2

  /external/webp/src/dec/
vp8_dec.h 176 // width/height/has_alpha can be passed NULL.
179 int* const width, int* const height, int* const has_alpha);
io_dec.c 192 const int has_alpha = WebPDispatchAlpha(alpha, io->width, mb_w, local
196 // has_alpha is true if there's non-trivial alpha to premultiply with.
197 if (has_alpha && WebPIsPremultipliedMode(colorspace)) {
298 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
311 const int num_rescalers = has_alpha ? 4 : 3;
314 if (has_alpha) {
329 p->scaler_a = has_alpha ? &scalers[3] : NULL;
342 if (has_alpha) {
483 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
493 const int num_rescalers = has_alpha ? 4 : 3
    [all...]
webp_dec.c 266 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
281 int* const has_alpha,
325 if (has_alpha != NULL) *has_alpha = !!(flags & ALPHA_FLAG);
382 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
401 if (has_alpha != NULL) {
404 *has_alpha |= (hdrs.alpha_data != NULL);
419 // fill out headers, ignore width/height/has_alpha.
691 &features->has_alpha, &features->has_animation,
vp8l_dec.c 119 int* const has_alpha) {
123 *has_alpha = VP8LReadBits(br, 1);
129 int* const width, int* const height, int* const has_alpha) {
143 if (has_alpha != NULL) *has_alpha = a;
1641 int width, height, has_alpha; local
    [all...]
buffer_dec.c 309 (features != NULL && features->has_alpha);
  /external/pdfium/core/fxge/
cfx_renderdevice.cpp 157 void NormalizeDest(bool has_alpha,
164 if (has_alpha) {
176 void NormalizeSrc(bool has_alpha,
183 if (!has_alpha) {
197 void SetAlpha(bool has_alpha, uint8_t* alpha) {
198 if (has_alpha)
216 const bool has_alpha = bitmap->GetFormat() == FXDIB_Argb; local
221 const int Bpp = has_alpha ? 4 : bitmap->GetBPP() / 8;
232 if (has_alpha) {
239 SetAlpha(has_alpha, dest_scan)
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/win/
cursor.cc 167 bool has_alpha = false; local
186 has_alpha = HasAlphaChannel(reinterpret_cast<uint32_t*>(image->data()),
203 if (!has_alpha) {
  /external/skia/src/codec/
SkWebpCodec.cpp 134 const bool hasAlpha = SkToBool(frame.has_alpha)
276 Frame* frame = fFrameHolder.appendNewFrame(iter.has_alpha);
466 && frame.has_alpha;
470 if (!frame.has_alpha) {
497 frame.has_alpha && dstInfo.alphaType() == kPremul_SkAlphaType && !this->colorXform());
550 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
562 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
  /external/skqp/src/codec/
SkWebpCodec.cpp 134 const bool hasAlpha = SkToBool(frame.has_alpha)
276 Frame* frame = fFrameHolder.appendNewFrame(iter.has_alpha);
466 && frame.has_alpha;
470 if (!frame.has_alpha) {
497 frame.has_alpha && dstInfo.alphaType() == kPremul_SkAlphaType && !this->colorXform());
550 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
562 dstInfo.alphaType(), frame.has_alpha, scaledWidth);
  /external/webp/include/webp/
demux.h 154 int has_alpha; // True if the frame contains transparency. member in struct:WebPIterator
decode.h 418 int has_alpha; // True if the bitstream contains an alpha channel. member in struct:WebPBitstreamFeatures
  /external/webp/src/webp/
demux.h 154 int has_alpha; // True if the frame contains transparency. member in struct:WebPIterator
decode.h 418 int has_alpha; // True if the bitstream contains an alpha channel. member in struct:WebPBitstreamFeatures
  /external/tensorflow/tensorflow/core/lib/png/
png_io.cc 254 const bool has_alpha = (context->color_type & PNG_COLOR_MASK_ALPHA) != 0; local
256 if (has_alpha) { // There is alpha
264 if (has_alpha || has_tRNS) { // There is alpha
  /external/webp/src/enc/
picture_csp_enc.c 850 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride); local
853 picture->colorspace = has_alpha ? WEBP_YUV420A : WEBP_YUV420;
865 if (has_alpha) {
    [all...]
picture_enc.c 92 const int has_alpha = (int)picture->colorspace & WEBP_CSP_ALPHA_BIT; local
111 a_width = has_alpha ? width : 0;
picture_tools_enc.c 210 const int has_alpha = pic->colorspace & WEBP_CSP_ALPHA_BIT; local
215 if (!has_alpha || a_ptr == NULL) return; // nothing to do
vp8l_enc.c 1824 int has_alpha; local
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_emit.c 305 bool has_alpha = util_format_has_alpha(format); local
310 COND(has_alpha, blend->rb_blendcontrol_rgb) |
311 COND(!has_alpha, blend->rb_blendcontrol_no_alpha_rgb));
  /external/u-boot/drivers/video/stm32/
stm32_ltdc.c 188 static bool has_alpha(u32 fmt) function
313 val = has_alpha(format) ? BF1_PAXCA | BF2_1PAXCA : BF1_CA | BF2_1CA;
  /external/webp/src/demux/
demux.c 203 frame->has_alpha_ |= features->has_alpha;
410 const int has_alpha = !!(dmux->feature_flags_ & ALPHA_FLAG); local
412 if (!has_alpha && frame->img_components_[1].size_ > 0) {
841 iter->has_alpha = frame->has_alpha_;
  /external/webrtc/webrtc/base/
x11windowpicker.cc 576 bool has_alpha) {
594 *p = has_alpha ? rgba & 0xFF : 0xFF;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 1767 bool has_alpha = false; local
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_emit.c 695 bool has_alpha = util_format_has_alpha(format); local
704 if (has_alpha) {
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp     [all...]

Completed in 412 milliseconds

1 2