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

  /external/skia/src/opts/
SkBitmapProcState_opts_SSSE3.cpp 165 // by alpha when has_alpha is true.
170 template<bool has_alpha, int scale>
176 if (has_alpha) {
191 // @param alpha when has_alpha is true, scale all resulting components by this
195 // (Ra0 * (16 - x0) + Ra1 * x0) * alpha) (when has_alpha is true)
200 template<bool has_alpha>
209 return ScaleFourPixels<has_alpha, 4>(&sum, alpha);
217 template<bool has_alpha>
231 return ScaleFourPixels<has_alpha, 4>(&sum, alpha);
271 // the results by, when has_alpha is true
    [all...]
  /external/skia/src/core/
SkOpts.h 66 int pixel_width, unsigned char* out_row, bool has_alpha);
71 unsigned char* out_row, bool has_alpha);
  /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)) {
297 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
310 const int num_rescalers = has_alpha ? 4 : 3;
313 if (has_alpha) {
328 p->scaler_a = has_alpha ? &scalers[3] : NULL;
341 if (has_alpha) {
482 const int has_alpha = WebPIsAlphaMode(p->output->colorspace); local
492 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.
689 &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;
1577 int width, height, has_alpha; local
    [all...]
buffer_dec.c 297 (features != NULL && features->has_alpha);
  /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/webp/include/webp/
demux.h 149 int has_alpha; // True if the frame contains transparency. member in struct:WebPIterator
decode.h 411 int has_alpha; // True if the bitstream contains an alpha channel. member in struct:WebPBitstreamFeatures
  /external/webp/src/webp/
demux.h 149 int has_alpha; // True if the frame contains transparency. member in struct:WebPIterator
decode.h 411 int has_alpha; // True if the bitstream contains an alpha channel. member in struct:WebPBitstreamFeatures
  /external/webp/src/enc/
picture_enc.c 93 const int has_alpha = (int)picture->colorspace & WEBP_CSP_ALPHA_BIT; local
112 a_width = has_alpha ? width : 0;
picture_csp_enc.c 843 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride); local
846 picture->colorspace = has_alpha ? WEBP_YUV420A : WEBP_YUV420;
858 if (has_alpha) {
871 if (has_alpha) {
    [all...]
picture_tools_enc.c 163 const int has_alpha = pic->colorspace & WEBP_CSP_ALPHA_BIT; local
164 if (!has_alpha || pic->a == NULL) return; // nothing to do
vp8l_enc.c 1575 int has_alpha; local
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 68 if ((!curr.has_alpha || curr.blend_method == WEBP_MUX_NO_BLEND) &&
221 (!currIter.has_alpha || currIter.blend_method == WEBP_MUX_NO_BLEND) &&
330 ALOGD(" producing frame %d (has_alpha = %d, dispose = %s, blend = %s, duration = %d)",
331 i, currIter.has_alpha,
  /external/pdfium/core/fxge/ge/
cfx_renderdevice.cpp 212 const bool has_alpha = bitmap->GetFormat() == FXDIB_Argb; local
217 const int Bpp = has_alpha ? 4 : bitmap->GetBPP() / 8;
218 auto* pNormalizeSrcFunc = has_alpha ? &NormalizeArgbSrc : &NormalizeRgbDst;
219 auto* pNormalizeDstFunc = has_alpha ? &NormalizeArgbDest : &NormalizeRgbSrc;
220 auto* pSetAlpha = has_alpha ? &SetAlpha : &SetAlphaDoNothing;
232 if (has_alpha) {
    [all...]
  /external/webp/src/demux/
demux.c 203 frame->has_alpha_ |= features->has_alpha;
408 const int has_alpha = !!(dmux->feature_flags_ & ALPHA_FLAG); local
410 if (!has_alpha && frame->img_components_[1].size_ > 0) {
839 iter->has_alpha = frame->has_alpha_;
anim_decode.c 182 } else if ((!curr->has_alpha || curr->blend_method == WEBP_MUX_NO_BLEND) &&
  /external/webrtc/webrtc/base/
x11windowpicker.cc 576 bool has_alpha) {
594 *p = has_alpha ? rgba & 0xFF : 0xFF;
  /external/skia/src/codec/
SkWebpCodec.cpp 123 if (SkToBool(features.has_alpha) || frame.width != width || frame.height != height) {
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp     [all...]
  /external/ImageMagick/coders/
webp.c 285 image->alpha_trait=features->has_alpha != 0 ? BlendPixelTrait :
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 610 milliseconds