HomeSort by relevance Sort by last modified time
    Searched refs:blendType (Results 1 - 10 of 10) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlender.java 44 * @param blendType
50 Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext);
TextureBlenderFactory.java 73 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
TextureBlenderDDS.java 32 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
76 this.blendPixel(resultPixel, materialColor, pixelColor, affectFactor, blendType, blenderContext);
TextureBlenderAWT.java 42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
60 this.blendPixel(resultPixel, materialColor, pixelColor, affectFactor, blendType, blenderContext);
TextureBlenderLuminance.java 33 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
51 this.blendPixel(resultPixel, materialColor, color, tinAndAlpha[0], affectFactor, blendType, blenderContext);
117 * @param blendtype
122 protected void blendPixel(float[] result, float[] materialColor, float[] color, float textureIntensity, float textureFactor, int blendtype, BlenderContext blenderContext) {
126 switch (blendtype) {
215 this.blendHSV(blendtype, result, textureIntensity, color, blenderContext);
218 throw new IllegalStateException("Unknown blend type: " + blendtype);
  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 562 int blendType,
668 int blend_mode = blendType;
669 if (FXDIB_BLEND_HARDLIGHT == blendType) {
671 } else if (FXDIB_BLEND_SOFTLIGHT == blendType) {
673 } else if (blendType >= FXDIB_BLEND_NONSEPARABLE && blendType <= FXDIB_BLEND_LUMINOSITY) {
674 blend_mode = blendType - 9;
675 } else if (blendType > FXDIB_BLEND_LUMINOSITY || blendType < 0) {
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
render_int.h 88 virtual FX_BOOL Start(CPDF_RenderStatus* pRenderStatus, const CPDF_PageObject* pObj, const CFX_AffineMatrix* pObj2Device, FX_BOOL bStdCS, int blendType = FXDIB_BLEND_NORMAL) = 0;
231 FX_BOOL Start(CPDF_RenderStatus* pStatus, const CPDF_PageObject* pObj, const CFX_AffineMatrix* pObj2Device, FX_BOOL bStdCS, int blendType = FXDIB_BLEND_NORMAL);
233 int bitmap_alpha, const CFX_AffineMatrix* pImage2Device, FX_DWORD flags, FX_BOOL bStdCS, int blendType = FXDIB_BLEND_NORMAL);
fpdf_render_image.cpp 440 FX_BOOL CPDF_ImageRenderer::Start(CPDF_RenderStatus* pStatus, const CPDF_PageObject* pObj, const CFX_AffineMatrix* pObj2Device, FX_BOOL bStdCS, int blendType)
445 m_BlendType = blendType;
459 int bitmap_alpha, const CFX_AffineMatrix* pImage2Device, FX_DWORD flags, FX_BOOL bStdCS, int blendType)
468 m_BlendType = blendType;
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialContext.java 154 int blendType = ((Number) mtexAndTex[0].getFieldValue("blendtype")).intValue();
160 texture = textureBlender.blend(diffuseColorArray, texture, color, colfac, blendType, negateTexture, blenderContext);
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 145 const struct blendType {
148 } blendType[] = {
704 for (unsigned int idx = 0; idx < NUMA(blendType); idx++) {
705 unsigned int id = blendType[idx].id;
    [all...]

Completed in 397 milliseconds