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

1 2 3 4 56 7 8 91011>>

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/exceptions/
BlenderFileException.java 35 * This exception is thrown when blend file data is somehow invalid.
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 228 float blend = (time - times[startFrame]) local
241 tempQ.nlerp(tempQ2, blend);
242 tempV.interpolate(tempV2, blend);
243 tempS.interpolate(tempS2, blend);
  /external/skia/gm/
Android.mk 23 blend.cpp \
blend.cpp 22 return SkString("blend");
  /external/skia/src/gpu/
GrDrawTarget.cpp 460 // Some blend modes allow folding a partial coverage value into the color's
461 // alpha channel, while others will blend incorrectly.
467 * We want the blend to compute: f*Cs*S + (f*Cd + (1-f))D
563 // or blend, just write transparent black into the dst.
580 // the source color is not included in the blend
581 // the dst coeff is effectively zero so blend works out to:
586 // the dst coeff is effectively zero so blend works out to:
594 // the dst coeff is effectively one so blend works out to:
619 // or b) one of our blend optimizations applies.
  /external/skia/tests/
SrcOverTest.cpp 28 /* Here's the idea. Can we ensure that when we blend on top of an opaque
  /external/webkit/Source/WebCore/platform/graphics/transforms/
Matrix3DTransformOperation.h 62 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
PerspectiveTransformOperation.h 62 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
RotateTransformOperation.h 69 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
ScaleTransformOperation.h 68 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
SkewTransformOperation.h 61 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
TransformOperation.h 64 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) = 0;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderAWT.java 42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { method in class:TextureBlenderAWT
81 * texture's color and later blended with the defined blend color. All alpha
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestTangentGenBadModels.java 40 final Spatial badModel = assetManager.loadModel("Models/TangentBugs/test.blend");
51 // Spatial model = assetManager.loadModel("test.blend");
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestOgreComplexAnim.java 87 // will blend over 15 seconds to stand
97 // will blend over 15 seconds to stand
  /external/skia/src/gpu/gl/
GrGLProgram.h 57 * The shader may modify the blend coefficients. Params are in/out
103 // used as a per-pixel blend coefficient. This controls whether a
  /external/webkit/Source/WebCore/platform/
Length.h 177 Length blend(const Length& from, float progress) const function in struct:WebCore::Length
179 // Blend two lengths to produce a new length that is in between them. Used for animation.
  /frameworks/rs/driver/
rsdProgramStore.cpp 114 rsc->setError(RS_ERROR_FATAL_DRIVER, "Unknown blend src mode.");
144 rsc->setError(RS_ERROR_FATAL_DRIVER, "Unknown blend dst mode.");
  /packages/apps/Camera/jni/
feature_mos_jni.cpp 28 #include "mosaic/Blend.h"
62 //int blendingType = Blend::BLEND_TYPE_FULL;
63 //int blendingType = Blend::BLEND_TYPE_CYLPAN;
64 int blendingType = Blend::BLEND_TYPE_HORZ;
65 int stripType = Blend::STRIP_TYPE_THIN;
  /packages/apps/Gallery2/jni_mosaic/
feature_mos_jni.cpp 28 #include "mosaic/Blend.h"
62 //int blendingType = Blend::BLEND_TYPE_FULL;
63 //int blendingType = Blend::BLEND_TYPE_CYLPAN;
64 int blendingType = Blend::BLEND_TYPE_HORZ;
65 int stripType = Blend::STRIP_TYPE_THIN;
  /packages/apps/LegacyCamera/jni/
feature_mos_jni.cpp 28 #include "mosaic/Blend.h"
62 //int blendingType = Blend::BLEND_TYPE_FULL;
63 //int blendingType = Blend::BLEND_TYPE_CYLPAN;
64 int blendingType = Blend::BLEND_TYPE_HORZ;
65 int stripType = Blend::STRIP_TYPE_THIN;
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 173 int32_t blend; member in class:Rectangle
562 // TODO: make measurments with background blend other than
564 // background blend of HWC_BLENDING_NONE, with the
565 // blend type of the foregound being varied.
592 testPrintI("overlapping blend: none");
601 testPrintI("overlapping blend: premult");
610 testPrintI("overlapping blend: coverage");
705 // For each of the blend types
709 rect.blend = id;
    [all...]
  /prebuilts/sdk/renderscript/lib/x86/
libRSSupport.so 
  /external/freetype/include/freetype/
t1tables.h 190 /* given blend dictionary (font info or private). Used to support */
195 /*# required fields in a FontInfo blend dictionary */
200 /*# required fields in a Private blend dictionary */
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 732 * Sets the values of this quaternion to the nlerp from itself to q2 by blend.
734 * @param blend
736 public void nlerp(Quaternion q2, float blend) {
738 float blendI = 1.0f - blend;
740 x = blendI * x - blend * q2.x;
741 y = blendI * y - blend * q2.y;
742 z = blendI * z - blend * q2.z;
743 w = blendI * w - blend * q2.w;
745 x = blendI * x + blend * q2.x;
746 y = blendI * y + blend * q2.y;
    [all...]

Completed in 2011 milliseconds

1 2 3 4 56 7 8 91011>>