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

1 2

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlender.java 1 package com.jme3.scene.plugins.blender.textures.blending;
7 * An interface for texture blending classes (the classes that mix the texture
13 // types of blending
38 * the texture we use in blending
45 * the blending type
48 * @return new texture that was created after the blending
TextureBlenderFactory.java 1 package com.jme3.scene.plugins.blender.textures.blending;
11 * This class creates the texture blending class depending on the texture type.
19 * This method creates the blending class.
23 * @returntexture blending class
70 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}. Returning a blender that does not change the texture.", format);
TextureBlenderDDS.java 1 package com.jme3.scene.plugins.blender.textures.blending;
20 * The class that is responsible for blending the following texture types:
64 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", format);
70 // blending colors
AbstractTextureBlender.java 1 package com.jme3.scene.plugins.blender.textures.blending;
15 * This method blends the single pixel depending on the blending type.
24 * the blending factor
26 * the blending type
124 * The method that performs the ramp blending.
TextureBlenderAWT.java 1 package com.jme3.scene.plugins.blender.textures.blending;
17 * The class that is responsible for blending the following texture types:
79 * material color and color defined for texture blending. If the type has 3
82 * values (if present) are ignored and not used during blending.
147 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", imageFormat);
TextureBlenderLuminance.java 1 package com.jme3.scene.plugins.blender.textures.blending;
18 * The class that is responsible for blending the following texture types:
96 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}", imageFormat);
  /system/core/libpixelflinger/codeflinger/
blending.cpp 1 /* libs/pixelflinger/codeflinger/blending.cpp
76 const int blending = blending_codes(fs, fd); local
78 // here, blending will produce something which doesn't depend on
84 // we are doing real blending...
91 comment("blending");
121 if (blending & (BLEND_DST|FACTOR_DST)) {
160 if ((blending & BLEND_SRC) && !same_factor_opt1) {
161 // source (fragment) is needed for the blending stage
187 // if destination (fb) is not needed for the blending stage,
189 if (!(blending & BLEND_DST))
    [all...]
GGLAssembler.cpp 142 const int blending = blending_codes(mBlendSrc, mBlendDst) | local
235 if ((blending & (FACTOR_DST|BLEND_DST)) ||
239 // blending / logic_op / masking need the framebuffer
470 // blending...
488 // Figure out what we need for the blending stage...
496 const int blending = blending_codes(fs, fd); local
519 (blending & (BLEND_SRC|FACTOR_SRC)) : need_expander));
565 // We keep only 8 bits for the blending stage
    [all...]
  /device/samsung/crespo/libhwcomposer/
SecHWCUtils.h 88 int blending; member in struct:hwc_win_info_t
SecHWC.cpp 57 l->compositionType, l->flags, l->handle, l->transform, l->blending,
156 (cur->blending == HWC_BLENDING_NONE))
  /hardware/libhardware/include/hardware/
hwcomposer.h 143 /* blending to apply during composition */
144 int32_t blending; member in struct:hwc_layer::__anon17811::__anon17812
  /hardware/libhardware/modules/hwcomposer/
hwcomposer.cpp 59 l->compositionType, l->flags, l->handle, l->transform, l->blending,
  /system/core/libpixelflinger/
Android.mk 16 codeflinger/blending.cpp \
scanline.cpp 247 "(clear) blending 0/0", scanline_clear, init_y_noop },
425 static void blending(context_t* c, pixel_t* fragment, pixel_t* fb);
452 void blending(context_t* c, pixel_t* fragment, pixel_t* fb) function in namespace:android
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcColorEquiv.cpp 358 layer->blending = HWC_BLENDING_NONE;
372 layer->blending = HWC_BLENDING_NONE;
hwcTestLib.cpp 466 testPrintI(" blending: %#x%s%s%s",
467 list->hwLayers[layer].blending,
468 (list->hwLayers[layer].blending == HWC_BLENDING_NONE)
470 (list->hwLayers[layer].blending == HWC_BLENDING_PREMULT)
472 (list->hwLayers[layer].blending == HWC_BLENDING_COVERAGE)
    [all...]
hwcRects.cpp 321 layer->blending = it->blend;
hwcStress.cpp 76 * color and have a blending operation that causes the color in overlapping
434 layer->blending = blendingOps[testRandMod(NUMA(blendingOps))];
hwcCommit.cpp     [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialContext.java 12 import com.jme3.scene.plugins.blender.textures.blending.TextureBlender;
13 import com.jme3.scene.plugins.blender.textures.blending.TextureBlenderFactory;
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 66 images, alpha testing and blending.
  /frameworks/native/services/surfaceflinger/
LayerBase.cpp 290 hwcl->blending = HWC_BLENDING_NONE;
303 hwcl->blending = mPremultipliedAlpha ?
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 262 intptr_t(l.handle), l.hints, l.flags, l.transform, l.blending, format,
  /hardware/ti/omap4xxx/hwc/
hwc.c 177 l->compositionType, l->flags, l->handle, l->transform, l->blending,
330 #define is_BLENDED(layer) ((layer)->blending != HWC_BLENDING_NONE)
474 oc->pre_mult_alpha = layer->blending == HWC_BLENDING_PREMULT;
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorImpl.java 94 private static final String ATTR_BLENDING = "blending";
1196 final int blending = Integer.parseInt(parser.getAttributeValue("", ATTR_BLENDING)); local
    [all...]

Completed in 595 milliseconds

1 2