HomeSort by relevance Sort by last modified time
    Searched refs:blend (Results 126 - 150 of 434) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mc.c 375 struct pipe_blend_state blend; local
396 memset(&blend, 0, sizeof blend);
397 blend.independent_blend_enable = 0;
398 blend.rt[0].blend_enable = 1;
399 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
400 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
401 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
402 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
403 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA
    [all...]
vl_idct.c 510 struct pipe_blend_state blend; local
525 memset(&blend, 0, sizeof blend);
527 blend.independent_blend_enable = 0;
528 blend.rt[0].blend_enable = 0;
529 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
530 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
531 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
532 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
533 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE
    [all...]
vl_compositor.c 399 struct pipe_blend_state blend; local
425 memset(&blend, 0, sizeof blend);
426 blend.independent_blend_enable = 0;
427 blend.rt[0].blend_enable = 0;
428 blend.logicop_enable = 0;
429 blend.logicop_func = PIPE_LOGICOP_CLEAR;
430 blend.rt[0].colormask = PIPE_MASK_RGBA;
431 blend.dither = 0;
432 c->blend_clear = c->pipe->create_blend_state(c->pipe, &blend);
720 void *blend = layer->blend ? layer->blend : i ? c->blend_add : c->blend_clear; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
t1decode.c 814 PS_Blend blend = decoder->blend; local
820 if ( !blend )
828 if ( arg_cnt != (FT_Int)( num_points * blend->num_designs ) )
858 for ( mm = 1; mm < blend->num_designs; mm++ )
859 tmp += FT_MulFix( *delta++, blend->weight_vector[mm] );
874 PS_Blend blend = decoder->blend; local
877 if ( arg_cnt != 1 || blend == NULL )
883 idx + blend->num_designs > decoder->len_buildchar
942 PS_Blend blend = decoder->blend; local
963 PS_Blend blend = decoder->blend; local
    [all...]
  /external/qemu/android/skin/
image.c 183 h += desc->blend * 7;
194 a->blend == b->blend &&
476 desc->blend == SKIN_BLEND_FULL)
489 desc0.blend = SKIN_BLEND_FULL;
518 if (desc->blend != SKIN_BLEND_FULL)
519 blend_image( node->pixels, node->pixels, node->w, node->h, desc->blend );
580 desc.blend = SKIN_BLEND_FULL;
665 int blend )
674 blend == SKIN_BLEND_FULL
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_idct.c 510 struct pipe_blend_state blend; local
525 memset(&blend, 0, sizeof blend);
527 blend.independent_blend_enable = 0;
528 blend.rt[0].blend_enable = 0;
529 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
530 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
531 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
532 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
533 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE
    [all...]
vl_compositor.c 399 struct pipe_blend_state blend; local
425 memset(&blend, 0, sizeof blend);
426 blend.independent_blend_enable = 0;
427 blend.rt[0].blend_enable = 0;
428 blend.logicop_enable = 0;
429 blend.logicop_func = PIPE_LOGICOP_CLEAR;
430 blend.rt[0].colormask = PIPE_MASK_RGBA;
431 blend.dither = 0;
432 c->blend_clear = c->pipe->create_blend_state(c->pipe, &blend);
720 void *blend = layer->blend ? layer->blend : i ? c->blend_add : c->blend_clear; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_clear.c 229 /* blend state: RGBA masking */
231 struct pipe_blend_state blend; local
232 memset(&blend, 0, sizeof(blend));
233 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
234 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
235 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
236 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
239 blend.rt[0].colormask |= PIPE_MASK_R;
241 blend.rt[0].colormask |= PIPE_MASK_G
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_clear.c 229 /* blend state: RGBA masking */
231 struct pipe_blend_state blend; local
232 memset(&blend, 0, sizeof(blend));
233 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
234 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
235 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
236 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
239 blend.rt[0].colormask |= PIPE_MASK_R;
241 blend.rt[0].colormask |= PIPE_MASK_G
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperations.cpp 81 RefPtr<TransformOperation> blendedOperation = toOperation ? toOperation->blend(fromOperation.get(), progress) : (fromOperation ? fromOperation->blend(0, progress, true) : nullptr);
103 TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) const function in class:WebCore::TransformOperations
147 fromDegrees = blend(fromDegrees, toTransform.angle(), minProgress);
148 toDegrees = blend(toDegrees, fromTransform.angle(), 1.0 - maxProgress);
286 fromTransform = fromOperation->blend(toOperation.get(), 1-minProgress, false);
287 toTransform = fromOperation->blend(toOperation.get(), 1-maxProgress, false);
289 fromTransform = toOperation->blend(fromOperation.get(), minProgress, false);
290 toTransform = toOperation->blend(fromOperation.get(), maxProgress, false);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_context.c 268 struct pipe_blend_state blend; local
270 memset(&blend, 0, sizeof(struct pipe_blend_state));
271 blend.rt[0].blend_enable = 0;
272 blend.rt[0].colormask = PIPE_MASK_RGBA;
274 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
275 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
276 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
277 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
279 cso_set_blend(ctx->cso, &blend);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_context.c 268 struct pipe_blend_state blend; local
270 memset(&blend, 0, sizeof(struct pipe_blend_state));
271 blend.rt[0].blend_enable = 0;
272 blend.rt[0].colormask = PIPE_MASK_RGBA;
274 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
275 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
276 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
277 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
279 cso_set_blend(ctx->cso, &blend);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
shader-leak.c 232 struct pipe_blend_state blend; local
234 memset(&blend, 0, sizeof blend);
235 blend.rt[0].colormask = PIPE_MASK_RGBA;
236 handle = ctx->create_blend_state(ctx, &blend);
tri-gs.c 237 struct pipe_blend_state blend; local
239 memset(&blend, 0, sizeof blend);
240 blend.rt[0].colormask = PIPE_MASK_RGBA;
241 handle = ctx->create_blend_state(ctx, &blend);
tri-instanced.c 288 struct pipe_blend_state blend; local
290 memset(&blend, 0, sizeof blend);
291 blend.rt[0].colormask = PIPE_MASK_RGBA;
292 handle = ctx->create_blend_state(ctx, &blend);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
tri.c 68 struct pipe_blend_state blend; member in struct:program
146 memset(&p->blend, 0, sizeof(p->blend));
147 p->blend.rt[0].colormask = PIPE_MASK_RGBA;
252 cso_set_blend(p->cso, &p->blend);
  /external/mesa3d/src/gallium/tests/graw/
shader-leak.c 232 struct pipe_blend_state blend; local
234 memset(&blend, 0, sizeof blend);
235 blend.rt[0].colormask = PIPE_MASK_RGBA;
236 handle = ctx->create_blend_state(ctx, &blend);
tri-gs.c 237 struct pipe_blend_state blend; local
239 memset(&blend, 0, sizeof blend);
240 blend.rt[0].colormask = PIPE_MASK_RGBA;
241 handle = ctx->create_blend_state(ctx, &blend);
tri-instanced.c 288 struct pipe_blend_state blend; local
290 memset(&blend, 0, sizeof blend);
291 blend.rt[0].colormask = PIPE_MASK_RGBA;
292 handle = ctx->create_blend_state(ctx, &blend);
  /external/mesa3d/src/gallium/tests/trivial/
tri.c 68 struct pipe_blend_state blend; member in struct:program
146 memset(&p->blend, 0, sizeof(p->blend));
147 p->blend.rt[0].colormask = PIPE_MASK_RGBA;
252 cso_set_blend(p->cso, &p->blend);
  /system/core/libpixelflinger/
picker.cpp 53 uint32_t src = c->state.blend.src;
54 uint32_t dst = c->state.blend.dst;
55 uint32_t src_alpha = c->state.blend.src_alpha;
56 uint32_t dst_alpha = c->state.blend.dst_alpha;
84 if (c->state.blend.alpha_separate) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_state.c 42 uint32_t blend[2], cmask[2]; local
62 blend[0] = cso->rt[0].blend_enable;
68 blend[1] = 0;
71 blend[1] |= cso->rt[i].blend_enable << i;
78 blend[1] = 0x0000000e * (blend[0] & 0x00000001);
87 SB_DATA (so, blend[1]);
91 if (blend[0] || blend[1]) {
93 SB_DATA (so, blend[0])
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
TransitionView.cpp 161 SkScalar blend[] = { 0.8f, 0.0f, local
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_state.c 42 uint32_t blend[2], cmask[2]; local
62 blend[0] = cso->rt[0].blend_enable;
68 blend[1] = 0;
71 blend[1] |= cso->rt[i].blend_enable << i;
78 blend[1] = 0x0000000e * (blend[0] & 0x00000001);
87 SB_DATA (so, blend[1]);
91 if (blend[0] || blend[1]) {
93 SB_DATA (so, blend[0])
    [all...]
  /external/skia/samplecode/
TransitionView.cpp 161 SkScalar blend[] = { 0.8f, 0.0f, local
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);

Completed in 3174 milliseconds

1 2 3 4 56 7 8 91011>>