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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_blend.c 81 struct svga_blend_state *blend = CALLOC_STRUCT( svga_blend_state ); local
85 /* Fill in the per-rendertarget blend state. We currently only
90 * top of D3D9 API. Instead we try to simulate with various blend modes.
96 blend->need_white_fragments = TRUE;
97 blend->rt[i].blend_enable = TRUE;
98 blend->rt[i].srcblend = SVGA3D_BLENDOP_ONE;
99 blend->rt[i].dstblend = SVGA3D_BLENDOP_ONE;
100 blend->rt[i].blendeq = SVGA3D_BLENDEQ_SUBTRACT;
103 blend->rt[i].blend_enable = TRUE;
104 blend->rt[i].srcblend = SVGA3D_BLENDOP_ZERO
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_blend.c 81 struct svga_blend_state *blend = CALLOC_STRUCT( svga_blend_state ); local
85 /* Fill in the per-rendertarget blend state. We currently only
90 * top of D3D9 API. Instead we try to simulate with various blend modes.
96 blend->need_white_fragments = TRUE;
97 blend->rt[i].blend_enable = TRUE;
98 blend->rt[i].srcblend = SVGA3D_BLENDOP_ONE;
99 blend->rt[i].dstblend = SVGA3D_BLENDOP_ONE;
100 blend->rt[i].blendeq = SVGA3D_BLENDEQ_SUBTRACT;
103 blend->rt[i].blend_enable = TRUE;
104 blend->rt[i].srcblend = SVGA3D_BLENDOP_ZERO
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dual_blend.h 14 static INLINE boolean util_blend_state_is_dual(const struct pipe_blend_state *blend,
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/mesa3d/src/gallium/auxiliary/util/
u_dual_blend.h 14 static INLINE boolean util_blend_state_is_dual(const struct pipe_blend_state *blend,
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.cpp 38 ShadowData ShadowData::blend(const ShadowData& from, double progress) const function in class:WebCore::ShadowData
43 return ShadowData(WebCore::blend(from.location(), location(), progress),
44 clampTo(WebCore::blend(from.blur(), blur(), progress), 0.0f),
45 WebCore::blend(from.spread(), spread(), progress),
47 WebCore::blend(from.color(), color(), progress));
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
SkewTransformOperation.cpp 29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::SkewTransformOperation
35 return SkewTransformOperation::create(WebCore::blend(m_angleX, 0.0, progress), WebCore::blend(m_angleY, 0.0, progress), m_type);
40 return SkewTransformOperation::create(WebCore::blend(fromAngleX, m_angleX, progress), WebCore::blend(fromAngleY, m_angleY, progress), m_type);
TransformationMatrixTest.cpp 20 result.blend(from, 0.25);
24 result.blend(from, 0.75);
ScaleTransformOperation.cpp 29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::ScaleTransformOperation
35 return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress),
36 WebCore::blend(m_y, 1.0, progress),
37 WebCore::blend(m_z, 1.0, progress), m_type);
43 return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress),
44 WebCore::blend(fromY, m_y, progress),
45 WebCore::blend(fromZ, m_z, progress), m_type);
TranslateTransformOperation.cpp 27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::TranslateTransformOperation
34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, ValueRangeAll), WebCore::blend(0., m_z, progress), m_type);
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), WebCore::blend(fromZ, m_z, progress), m_type);
Matrix3DTransformOperation.cpp 35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::Matrix3DTransformOperation
52 toT.blend(fromT, progress);
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
AnimationUtilities.h 38 inline int blend(int from, int to, double progress) function in namespace:WebCore
45 inline T blend(T from, T to, double progress) function in namespace:WebCore
51 inline double blend(double from, double to, double progress) function in namespace:WebCore
56 inline float blend(float from, float to, double progress) function in namespace:WebCore
61 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) function in namespace:WebCore
66 inline IntPoint blend(const IntPoint& from, const IntPoint& to, double progress) function in namespace:WebCore
68 return IntPoint(blend(from.x(), to.x(), progress), blend(from.y(), to.y(), progress));
71 inline FloatPoint blend(const FloatPoint& from, const FloatPoint& to, double progress) function in namespace:WebCore
73 return FloatPoint(blend(from.x(), to.x(), progress), blend(from.y(), to.y(), progress))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterOperation.cpp 34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperation* to, double progress) function in class:WebCore::FilterOperation
38 return to->blend(from, progress);
39 return from->blend(0, 1 - progress);
42 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress) const function in class:WebCore::BasicColorMatrixFilterOperation
64 double result = WebCore::blend(fromAmount, m_amount, progress);
81 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress) const function in class:WebCore::BasicComponentTransferFilterOperation
103 double result = WebCore::blend(fromAmount, m_amount, progress);
119 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress) const function in class:WebCore::BlurFilterOperation
123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative));
126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative))
129 PassRefPtr<FilterOperation> DropShadowFilterOperation::blend(const FilterOperation* from, double progress) const function in class:WebCore::DropShadowFilterOperation
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSBlendTest.java 59 ScriptIntrinsicBlend blend = ScriptIntrinsicBlend.create(mRS, Element.RGBA_8888(mRS)); local
63 blend.forEachAdd(rsInput, rsOutput);
66 blend.forEachClear(rsInput, rsOutput);
69 blend.forEachDst(rsInput, rsOutput);
72 blend.forEachDstAtop(rsInput, rsOutput);
75 blend.forEachDstIn(rsInput, rsOutput);
78 blend.forEachDstOut(rsInput, rsOutput);
81 blend.forEachDstOver(rsInput, rsOutput);
84 blend.forEachMultiply(rsInput, rsOutput);
87 blend.forEachSrc(rsInput, rsOutput)
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
client_context_state_autogen.h 17 bool blend; member in struct:EnableFlags
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_cc.c 40 struct gen6_blend_state *blend; local
54 size = sizeof(*blend) * nr_draw_buffers;
55 blend = brw_state_batch(brw, AUB_TRACE_BLEND_STATE,
58 memset(blend, 0, size);
93 blend[b].blend1.logic_op_enable = 1;
94 blend[b].blend1.logic_op_func =
98 GLenum eqRGB = ctx->Color.Blend[b].EquationRGB;
99 GLenum eqA = ctx->Color.Blend[b].EquationA;
100 GLenum srcRGB = ctx->Color.Blend[b].SrcRGB;
101 GLenum dstRGB = ctx->Color.Blend[b].DstRGB
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_cc.c 40 struct gen6_blend_state *blend; local
54 size = sizeof(*blend) * nr_draw_buffers;
55 blend = brw_state_batch(brw, AUB_TRACE_BLEND_STATE,
58 memset(blend, 0, size);
93 blend[b].blend1.logic_op_enable = 1;
94 blend[b].blend1.logic_op_func =
98 GLenum eqRGB = ctx->Color.Blend[b].EquationRGB;
99 GLenum eqA = ctx->Color.Blend[b].EquationA;
100 GLenum srcRGB = ctx->Color.Blend[b].SrcRGB;
101 GLenum dstRGB = ctx->Color.Blend[b].DstRGB
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_blend.c 45 * Convert GLenum blend tokens to pipe tokens.
46 * Both blend factors and blend funcs are accepted.
49 translate_blend(GLenum blend)
51 switch (blend) {
52 /* blend functions */
64 /* blend factors */
172 * Figure out if blend enables/state are different per rt.
192 struct pipe_blend_state *blend = &st->state.blend; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_blend.c 45 * Convert GLenum blend tokens to pipe tokens.
46 * Both blend factors and blend funcs are accepted.
49 translate_blend(GLenum blend)
51 switch (blend) {
52 /* blend functions */
64 /* blend factors */
172 * Figure out if blend enables/state are different per rt.
192 struct pipe_blend_state *blend = &st->state.blend; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttgxvar.c 286 GX_Blend blend = face->blend; local
297 blend->avar_checked = TRUE;
308 axisCount != (FT_Long)blend->mmvar->num_axis )
311 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) )
314 segment = &blend->avar_segment[0];
324 FT_FREE( blend->avar_segment[j].correspondence );
326 FT_FREE( blend->avar_segment );
327 blend->avar_segment = NULL;
378 GX_Blend blend = face->blend local
853 GX_Blend blend; local
990 GX_Blend blend; local
1113 GX_Blend blend = face->blend; local
1308 GX_Blend blend = face->blend; local
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 286 GX_Blend blend = face->blend; local
297 blend->avar_checked = TRUE;
308 axisCount != (FT_Long)blend->mmvar->num_axis )
311 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) )
314 segment = &blend->avar_segment[0];
324 FT_FREE( blend->avar_segment[j].correspondence );
326 FT_FREE( blend->avar_segment );
327 blend->avar_segment = NULL;
378 GX_Blend blend = face->blend local
853 GX_Blend blend; local
990 GX_Blend blend; local
1113 GX_Blend blend = face->blend; local
1308 GX_Blend blend = face->blend; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttgxvar.c 286 GX_Blend blend = face->blend; local
297 blend->avar_checked = TRUE;
308 axisCount != (FT_Long)blend->mmvar->num_axis )
311 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) )
314 segment = &blend->avar_segment[0];
324 FT_FREE( blend->avar_segment[j].correspondence );
326 FT_FREE( blend->avar_segment );
327 blend->avar_segment = NULL;
378 GX_Blend blend = face->blend local
853 GX_Blend blend; local
990 GX_Blend blend; local
1113 GX_Blend blend = face->blend; local
1308 GX_Blend blend = face->blend; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_state_blend.c 40 const struct pipe_blend_state *blend)
42 return mem_dup(blend, sizeof(*blend));
48 void *blend)
54 softpipe->blend = (struct pipe_blend_state *)blend;
62 void *blend)
64 FREE( blend );
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_blend.c 40 const struct pipe_blend_state *blend)
42 return mem_dup(blend, sizeof(*blend));
48 void *blend)
54 softpipe->blend = (struct pipe_blend_state *)blend;
62 void *blend)
64 FREE( blend );
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlend.java 48 private void blend(int id, Allocation ain, Allocation aout) { method in class:ScriptIntrinsicBlend
65 blend(0, ain, aout);
85 blend(1, ain, aout);
125 blend(3, ain, aout);
144 blend(4, ain, aout);
163 blend(5, ain, aout);
182 blend(6, ain, aout);
201 blend(7, ain, aout);
220 blend(8, ain, aout);
240 blend(9, ain, aout)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_blend.c 46 const struct pipe_blend_state *blend)
48 struct pipe_blend_state *state = mem_dup(blend, sizeof *blend);
62 llvmpipe_bind_blend_state(struct pipe_context *pipe, void *blend)
66 if (llvmpipe->blend == blend)
71 llvmpipe->blend = blend;
78 llvmpipe_delete_blend_state(struct pipe_context *pipe, void *blend)
80 FREE( blend );
    [all...]

Completed in 1340 milliseconds

1 2 3 4 5 6 7 8 91011>>