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

1 2 3 4

  /external/chromium_org/cc/output/
filter_operations_unittest.cc 147 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
151 blended = FilterOperation::Blend(&from, &to, 0.75);
155 blended = FilterOperation::Blend(&from, &to, 1.8);
163 FilterOperation blended = FilterOperation::Blend(&filter, NULL, 0.25);
167 blended = FilterOperation::Blend(NULL, &filter, 0.25);
176 FilterOperation blended = FilterOperation::Blend(&from, &to, -0.75);
180 blended = FilterOperation::Blend(&from, &to, 0.75);
184 blended = FilterOperation::Blend(&from, &to, 1.8);
192 FilterOperation blended = FilterOperation::Blend(&filter, NULL, 0.25);
196 blended = FilterOperation::Blend(NULL, &filter, 0.25)
    [all...]
filter_operations.h 68 FilterOperations Blend(const FilterOperations& from, double progress) const;
  /development/perftests/panorama/feature_mos/src/mosaic/
Mosaic.cpp 62 if (blendingType == Blend::BLEND_TYPE_FULL ||
63 blendingType == Blend::BLEND_TYPE_PAN)
65 stripType = Blend::STRIP_TYPE_THIN;
100 if (blendingType == Blend::BLEND_TYPE_FULL ||
101 blendingType == Blend::BLEND_TYPE_PAN ||
102 blendingType == Blend::BLEND_TYPE_CYLPAN ||
103 blendingType == Blend::BLEND_TYPE_HORZ) {
104 blender = new Blend();
192 if (blendingType == Blend::BLEND_TYPE_PAN)
199 int ret = Blend::BLEND_RET_ERROR
    [all...]
Blend.h 18 // Blend.h
19 // $Id: Blend.h,v 1.23 2011/06/24 04:22:14 mbansal Exp $
53 class Blend {
71 Blend();
72 ~Blend();
Mosaic.h 28 #include "Blend.h"
42 int blendingType = Blend::BLEND_TYPE_CYLPAN;
43 int stripType = Blend::STRIP_TYPE_THIN;
213 Blend *blender;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.cpp 65 if (blendingType == Blend::BLEND_TYPE_FULL ||
66 blendingType == Blend::BLEND_TYPE_PAN)
68 stripType = Blend::STRIP_TYPE_THIN;
107 if (blendingType == Blend::BLEND_TYPE_FULL ||
108 blendingType == Blend::BLEND_TYPE_PAN ||
109 blendingType == Blend::BLEND_TYPE_CYLPAN ||
110 blendingType == Blend::BLEND_TYPE_HORZ) {
111 blender = new Blend();
202 if (blendingType == Blend::BLEND_TYPE_PAN)
209 int ret = Blend::BLEND_RET_ERROR
    [all...]
Blend.h 18 // Blend.h
19 // $Id: Blend.h,v 1.23 2011/06/24 04:22:14 mbansal Exp $
53 class Blend {
71 Blend();
72 ~Blend();
Mosaic.h 28 #include "Blend.h"
42 int blendingType = Blend::BLEND_TYPE_CYLPAN;
43 int stripType = Blend::STRIP_TYPE_THIN;
213 Blend *blender;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.cpp 61 if (blendingType == Blend::BLEND_TYPE_FULL ||
62 blendingType == Blend::BLEND_TYPE_PAN)
64 stripType = Blend::STRIP_TYPE_THIN;
102 if (blendingType == Blend::BLEND_TYPE_FULL ||
103 blendingType == Blend::BLEND_TYPE_PAN ||
104 blendingType == Blend::BLEND_TYPE_CYLPAN ||
105 blendingType == Blend::BLEND_TYPE_HORZ) {
106 blender = new Blend();
189 if (blendingType == Blend::BLEND_TYPE_PAN)
196 int ret = Blend::BLEND_RET_ERROR
    [all...]
Blend.h 18 // Blend.h
19 // $Id: Blend.h,v 1.23 2011/06/24 04:22:14 mbansal Exp $
53 class Blend {
71 Blend();
72 ~Blend();
Mosaic.h 28 #include "Blend.h"
42 int blendingType = Blend::BLEND_TYPE_CYLPAN;
43 int stripType = Blend::STRIP_TYPE_THIN;
207 Blend *blender;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel.c 70 (effective_func(ctx->Color.Blend[0].SrcRGB, src_alpha_is_one) != GL_ONE ||
71 effective_func(ctx->Color.Blend[0].DstRGB, src_alpha_is_one) != GL_ZERO ||
72 ctx->Color.Blend[0].EquationRGB != GL_FUNC_ADD ||
73 effective_func(ctx->Color.Blend[0].SrcA, src_alpha_is_one) != GL_ONE ||
74 effective_func(ctx->Color.Blend[0].DstA, src_alpha_is_one) != GL_ZERO ||
75 ctx->Color.Blend[0].EquationA != GL_FUNC_ADD)) {
76 DBG("fallback due to blend\n");
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel.c 70 (effective_func(ctx->Color.Blend[0].SrcRGB, src_alpha_is_one) != GL_ONE ||
71 effective_func(ctx->Color.Blend[0].DstRGB, src_alpha_is_one) != GL_ZERO ||
72 ctx->Color.Blend[0].EquationRGB != GL_FUNC_ADD ||
73 effective_func(ctx->Color.Blend[0].SrcA, src_alpha_is_one) != GL_ONE ||
74 effective_func(ctx->Color.Blend[0].DstA, src_alpha_is_one) != GL_ZERO ||
75 ctx->Color.Blend[0].EquationA != GL_FUNC_ADD)) {
76 DBG("fallback due to blend\n");
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
blend.c 2 * \file blend.c
33 #include "blend.h"
42 * Check if given blend source factor is legal.
80 * Check if given blend destination factor is legal.
121 * Check if src/dest RGB/A blend factors are legal. If not generate
188 ctx->Color.Blend[buf]._UsesDualSrc =
189 (blend_factor_is_dual_src(ctx->Color.Blend[buf].SrcRGB) ||
190 blend_factor_is_dual_src(ctx->Color.Blend[buf].DstRGB) ||
191 blend_factor_is_dual_src(ctx->Color.Blend[buf].SrcA) ||
192 blend_factor_is_dual_src(ctx->Color.Blend[buf].DstA))
    [all...]
  /external/mesa3d/src/mesa/main/
blend.c 2 * \file blend.c
33 #include "blend.h"
42 * Check if given blend source factor is legal.
80 * Check if given blend destination factor is legal.
121 * Check if src/dest RGB/A blend factors are legal. If not generate
188 ctx->Color.Blend[buf]._UsesDualSrc =
189 (blend_factor_is_dual_src(ctx->Color.Blend[buf].SrcRGB) ||
190 blend_factor_is_dual_src(ctx->Color.Blend[buf].DstRGB) ||
191 blend_factor_is_dual_src(ctx->Color.Blend[buf].SrcA) ||
192 blend_factor_is_dual_src(ctx->Color.Blend[buf].DstA))
    [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/mesa/src/src/mesa/swrast/
s_blend.c 31 * Only a few blend modes have been optimized (min, max, transparency, add)
78 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD);
79 ASSERT(ctx->Color.Blend[0].EquationA == GL_FUNC_ADD);
80 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ZERO);
81 ASSERT(ctx->Color.Blend[0].DstRGB == GL_ONE);
104 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD);
105 ASSERT(ctx->Color.Blend[0].EquationA == GL_FUNC_ADD);
106 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE);
107 ASSERT(ctx->Color.Blend[0].DstRGB == GL_ZERO);
128 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blend.c 31 * Only a few blend modes have been optimized (min, max, transparency, add)
78 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD);
79 ASSERT(ctx->Color.Blend[0].EquationA == GL_FUNC_ADD);
80 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ZERO);
81 ASSERT(ctx->Color.Blend[0].DstRGB == GL_ONE);
104 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD);
105 ASSERT(ctx->Color.Blend[0].EquationA == GL_FUNC_ADD);
106 ASSERT(ctx->Color.Blend[0].SrcRGB == GL_ONE);
107 ASSERT(ctx->Color.Blend[0].DstRGB == GL_ZERO);
128 ASSERT(ctx->Color.Blend[0].EquationRGB == GL_FUNC_ADD)
    [all...]
  /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...]
brw_cc.c 72 * Modify blend function to force destination alpha to 1.0
74 * If \c function specifies a blend function that uses destination alpha,
150 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB;
151 GLenum eqA = ctx->Color.Blend[0].EquationA;
152 GLenum srcRGB = ctx->Color.Blend[0].SrcRGB;
153 GLenum dstRGB = ctx->Color.Blend[0].DstRGB;
154 GLenum srcA = ctx->Color.Blend[0].SrcA;
155 GLenum dstA = ctx->Color.Blend[0].DstA;
157 /* If the renderbuffer is XRGB, we have to frob the blend function to
  /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...]
brw_cc.c 72 * Modify blend function to force destination alpha to 1.0
74 * If \c function specifies a blend function that uses destination alpha,
150 GLenum eqRGB = ctx->Color.Blend[0].EquationRGB;
151 GLenum eqA = ctx->Color.Blend[0].EquationA;
152 GLenum srcRGB = ctx->Color.Blend[0].SrcRGB;
153 GLenum dstRGB = ctx->Color.Blend[0].DstRGB;
154 GLenum srcA = ctx->Color.Blend[0].SrcA;
155 GLenum dstA = ctx->Color.Blend[0].DstA;
157 /* If the renderbuffer is XRGB, we have to frob the blend function to
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 280 blended_scale.Blend(scale_from, progress);
283 blended_translate.Blend(translate_from, progress);
289 expected, operations_to.Blend(operations_from, progress));
298 expected_matrix.Blend(from_matrix, progress);
300 expected_matrix, to_transform.Blend(from_transform, progress));
366 expected.Blend(from, progress);
369 expected, operations_to.Blend(operations_from, progress));
385 expected, operations_to.Blend(operations_from, progress));
400 expected, operations_to.Blend(operations_from, progress));
418 expected.Blend(matrix_from, progress)
    [all...]
  /development/perftests/panorama/
benchmark.cpp 28 const int blendingType = Blend::BLEND_TYPE_HORZ;
29 const int stripType = Blend::STRIP_TYPE_WIDE;

Completed in 284 milliseconds

1 2 3 4