Searched refs:blend (Results 126 - 150 of 344) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
H A Dtri-instanced.c288 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/
H A Dtri.c68 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/
H A Dshader-leak.c232 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);
H A Dtri-gs.c237 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);
H A Dtri-instanced.c288 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/
H A Dtri.c68 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/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A DContext.cpp70 mState.blend.blend = false;
71 mState.blend.sourceBlendRGB = GL_ONE;
72 mState.blend.sourceBlendAlpha = GL_ONE;
73 mState.blend.destBlendRGB = GL_ZERO;
74 mState.blend.destBlendAlpha = GL_ZERO;
75 mState.blend.blendEquationRGB = GL_FUNC_ADD;
76 mState.blend.blendEquationAlpha = GL_FUNC_ADD;
77 mState.blend.sampleAlphaToCoverage = false;
78 mState.blend
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_state.c42 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[
[all...]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_state.c42 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[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DFilterOperation.h73 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* /*from*/, double /*progress*/, bool /*blendToPassthrough*/ = false) function in class:WebCore::FilterOperation
192 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
226 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
259 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
295 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
331 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
/external/chromium_org/content/browser/aura/
H A Dsoftware_output_device_win.cc75 BLENDFUNCTION blend = {AC_SRC_OVER, 0x00, 0xFF, AC_SRC_ALPHA}; local
84 RGB(0xFF, 0xFF, 0xFF), &blend, ULW_ALPHA);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEBlendElement.cpp98 FEBlend* blend = static_cast<FEBlend*>(effect); local
100 return blend->setBlendMode(modeCurrentValue());
H A DSVGPathBlender.cpp43 return FloatPoint(blend(a.x(), b.x(), progress), blend(a.y(), b.y(), progress));
54 return blend(from, to, m_progress);
60 float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress);
66 float currentValue = blend(fromValue, toValue, m_progress);
260 m_consumer->arcTo(blend(fromRx, toRx, m_progress),
261 blend(fromRy, toRy, m_progress),
262 blend(fromAngle, toAngle, m_progress),
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_compositor.h65 void *blend; member in struct:vl_compositor_layer
172 unsigned layer, void *blend, bool is_clearing);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state_immediate.c137 LIS5 |= i915->blend->LIS5;
171 LIS6 |= i915->blend->LIS6;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_context.h62 struct pipe_blend_state *blend; member in struct:softpipe_context
154 struct quad_stage *blend; member in struct:softpipe_context::__anon12244
/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_external_texture_layer_impl.cc52 void WebExternalTextureLayerImpl::setBlendBackgroundColor(bool blend) { argument
53 static_cast<TextureLayer*>(layer_->layer())->SetBlendBackgroundColor(blend);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor.h65 void *blend; member in struct:vl_compositor_layer
172 unsigned layer, void *blend, bool is_clearing);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_immediate.c137 LIS5 |= i915->blend->LIS5;
171 LIS6 |= i915->blend->LIS6;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_context.h62 struct pipe_blend_state *blend; member in struct:softpipe_context
154 struct quad_stage *blend; member in struct:softpipe_context::__anon22627
/external/chromium_org/gpu/command_buffer/service/
H A Dcontext_state_autogen.h15 bool blend; member in struct:EnableFlags
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterOperation.h65 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
H A DValidatedCustomFilterOperation.h54 virtual PassRefPtr<FilterOperation> blend(const FilterOperation* from, double progress, bool blendToPassthrough = false);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DScaleTransformOperation.h68 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
H A DSkewTransformOperation.h61 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);

Completed in 3413 milliseconds

1234567891011>>