HomeSort by relevance Sort by last modified time
    Searched full:blend (Results 51 - 75 of 948) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/utils/
SkInterpolator.cpp 41 <blend>
62 SkMSec nextTime, const SkScalar blend[4]) {
66 return blend ?
67 SkUnitCubicInterp(t, blend[0], blend[1], blend[2], blend[3]) : t;
161 const SkScalar values[], const SkScalar blend[4]) {
164 if (blend == nullptr) {
165 blend = gIdentityBlend
    [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/mesa3d/src/gallium/state_trackers/vdpau/
output.c 571 struct pipe_blend_state blend; local
573 memset(&blend, 0, sizeof blend);
574 blend.independent_blend_enable = 0;
577 blend.rt[0].blend_enable = 1;
578 blend.rt[0].rgb_src_factor = BlendFactorToPipe(blend_state->blend_factor_source_color);
579 blend.rt[0].rgb_dst_factor = BlendFactorToPipe(blend_state->blend_factor_destination_color);
580 blend.rt[0].alpha_src_factor = BlendFactorToPipe(blend_state->blend_factor_source_alpha);
581 blend.rt[0].alpha_dst_factor = BlendFactorToPipe(blend_state->blend_factor_destination_alpha);
582 blend.rt[0].rgb_func = BlendEquationToPipe(blend_state->blend_equation_color)
641 void *blend; local
700 void *blend; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_matrix_filter.c 157 struct pipe_blend_state blend; local
177 memset(&blend, 0, sizeof blend);
178 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
179 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
180 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
181 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
182 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
183 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
184 blend.logicop_func = PIPE_LOGICOP_CLEAR
    [all...]
vl_median_filter.c 243 struct pipe_blend_state blend; local
263 memset(&blend, 0, sizeof blend);
264 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
265 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
266 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
267 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
268 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
269 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
270 blend.logicop_func = PIPE_LOGICOP_CLEAR
    [all...]
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_zscan.c 265 struct pipe_blend_state blend; local
279 memset(&blend, 0, sizeof blend);
281 blend.independent_blend_enable = 0;
282 blend.rt[0].blend_enable = 0;
283 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
284 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
285 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
286 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
287 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE
    [all...]
  /external/deqp/doc/testspecs/GLES31/
functional.draw_buffers_indexed.txt 25 + Blend equations, blend functions, blend enable and color masks.
34 + Exhaustive blend state combinations.
40 objects. Depending on test case it sets some common blend state with original
42 functions and finally tries to set some common blend state again with original
  /external/ImageMagick/PerlMagick/t/reference/read/
input_ico.miff 2 class=DirectClass colors=16 alpha-trait=Blend
input_null_DarkOrange.miff 2 class=DirectClass colors=0 alpha-trait=Blend
input_null_black.miff 2 class=DirectClass colors=0 alpha-trait=Blend
input_null_white.miff 2 class=DirectClass colors=0 alpha-trait=Blend
  /external/llvm/test/CodeGen/X86/
2011-10-19-widen_vselect.ll 4 ; we are able to generate vector blend instructions.
7 ; CHECK-NOT: blend
17 ; CHECK: blend
40 ; CHECK: blend
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_yuv.c 40 struct pipe_blend_state blend; local
42 memset(&blend, 0, sizeof(struct pipe_blend_state));
43 blend.rt[0].blend_enable = 0;
44 blend.rt[0].colormask = PIPE_MASK_RGBA;
47 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
48 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
49 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ZERO;
50 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ZERO;
52 cso_set_blend(r->cso, &blend);
  /external/skia/src/animator/
SkDisplayRandom.h 34 SkScalar blend; member in class:SkDisplayRandom
  /external/skia/src/gpu/glsl/
GrGLSLBlend.h 18 * Appends GLSL code to fsBuilder that assigns a specified blend of the srcColor and dstColor
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 65 * values (with an implicity blend array of [0, 0, 1, 1] giving linear
79 * values and blend array.
85 * @param blend (may be null) Optional array of 4 blend values
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) {
94 if (blend != null && blend.length < 4) {
97 nativeSetKeyFrame(native_instance, index, msec, values, blend);
160 private static native void nativeSetKeyFrame(long native_instance, int index, int msec, float[] values, float[] blend);
  /frameworks/base/libs/hwui/renderstate/
Blend.cpp 16 #include <renderstate/Blend.h>
94 Blend::Blend()
101 void Blend::invalidate() {
106 void Blend::syncEnabled() {
114 void Blend::getFactors(SkXfermode::Mode mode, ModeOrderSwap modeUsage, GLenum* outSrc, GLenum* outDst) {
119 void Blend::setFactors(GLenum srcMode, GLenum dstMode) {
141 void Blend::dump() {
142 ALOGD("Blend: enabled %d, func src %d, dst %d", mEnabled, mSrcMode, mDstMode);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Convolve3x3.java 36 private float blend(float v1, float v2, float p) { method in class:Convolve3x3
42 float cf1 = blend(1.f / 9.f, 0.f, str);
43 float cf2 = blend(1.f / 9.f, -1.f, str);
44 float cf3 = blend(1.f / 9.f, 5.f, str);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Convolve3x3.java 43 private float blend(float v1, float v2, float p) { method in class:Convolve3x3
49 float cf1 = blend(1.f / 9.f, 0.f, str);
50 float cf2 = blend(1.f / 9.f, -1.f, str);
51 float cf3 = blend(1.f / 9.f, 5.f, str);
  /external/opencv3/samples/cpp/
cloning_gui.cpp 45 Mat img0, img1, img2, res, res1, final, final1, blend;
151 colorChange(img0,res1,blend,red,green,blue);
152 imshow("Color Change Image", blend);
158 illuminationChange(img0,res1,blend,alpha,beta);
159 imshow("Illum Change Image", blend);
164 textureFlattening(img0,res1,blend,low_t,high_t,kernel_size);
165 imshow("Texture Flattened", blend);
254 seamlessClone(img0,img2,res1,point,blend,num);
255 imshow("Cloned Image", blend);
256 imwrite("cloned.png",blend);
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/photo/seamless_cloning/
cloning_gui.cpp 44 Mat img0, img1, img2, res, res1, final, final1, blend;
150 colorChange(img0,res1,blend,red,green,blue);
151 imshow("Color Change Image", blend);
157 illuminationChange(img0,res1,blend,alpha,beta);
158 imshow("Illum Change Image", blend);
163 textureFlattening(img0,res1,blend,low_t,high_t,kernel_size);
164 imshow("Texture Flattened", blend);
253 seamlessClone(img0,img2,res1,point,blend,num);
254 imshow("Cloned Image", blend);
255 imwrite("cloned.png",blend);
    [all...]
  /developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/res/values/
base-strings.xml 30 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
  /development/samples/browseable/DrawableTinting/res/values/
base-strings.xml 30 with a reference to a color and a PorterDuff blend mode. The color and blend mode can be
  /external/opencv3/modules/photo/src/
seamless_cloning.cpp 56 Mat blend = _blend.getMat(); local
113 obj.normalClone(dest,cd_mask,dst_mask,blend,flags);
122 Mat blend = _dst.getMat(); local
140 obj.localColorChange(src,cs_mask,gray,blend,red,green,blue);
149 Mat blend = _dst.getMat(); local
165 obj.illuminationChange(src,cs_mask,gray,blend,alpha,beta);
176 Mat blend = _dst.getMat(); local
190 obj.textureFlatten(src,cs_mask,gray,low_threshold,high_threshold,kernel_size,blend);

Completed in 379 milliseconds

1 23 4 5 6 7 8 91011>>