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

1 2 3 4 5

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
RenderContext.java 29 private boolean blending; field in class:RenderContext
50 blending = false;
60 if (blending) Gdx.gl.glDisable(GL20.GL_BLEND);
92 if (enabled != blending) {
93 blending = enabled;
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
PlaneCapabilities.cpp 141 uint32_t blending = (uint32_t)hwcLayer->getLayer()->blending; local
148 switch (blending) {
158 VTRACE("unsupported blending %#x", blending);
162 // overlay doesn't support blending
163 return (blending == HWC_BLENDING_NONE) ? true : false;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
PlaneCapabilities.cpp 141 uint32_t blending = (uint32_t)hwcLayer->getLayer()->blending; local
145 switch (blending) {
152 VLOGTRACE("unsupported blending %#x", blending);
156 // overlay doesn't support blending
157 return (blending == HWC_BLENDING_NONE) ? true : false;
  /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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 34 * By default all methods use blending. You can disable blending with {@link Pixmap#setBlending(Blending)}. The
82 /** Blending functions to be set with {@link Pixmap#setBlending}.
84 public enum Blending {
95 /** global blending state **/
96 private static Blending blending = Blending.SourceOver; field in class:Pixmap
103 /** Sets the type of {@link Blending} to be used for all operations. Default is {@link Blending#SourceOver}.
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
PlaneCapabilities.cpp 160 uint32_t blending = (uint32_t)hwcLayer->getLayer()->blending; local
165 switch (blending) {
172 VTRACE("unsupported blending %#x", blending);
176 // overlay doesn't support blending
177 return (blending == HWC_BLENDING_NONE) ? true : false;
  /hardware/qcom/display/msm8084/libqdutils/
cb_utils.cpp 54 if((list->hwLayers[i].blending == HWC_BLENDING_NONE) ||
65 // need to take care only in per pixel blending.
67 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.cpp 54 if((list->hwLayers[i].blending == HWC_BLENDING_NONE) ||
65 // need to take care only in per pixel blending.
67 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.cpp 54 if(((list->hwLayers[i].blending == HWC_BLENDING_NONE) &&
66 // need to take care only in per pixel blending.
68 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
Pixmap.java 69 /** Blending functions to be set with {@link Pixmap#setBlending}.
71 public enum Blending {
93 static Blending blending; field in class:Pixmap
142 /** Sets the type of {@link Blending} to be used for all operations. Default is {@link Blending#SourceOver}.
143 * @param blending the blending type */
144 public static void setBlending (Blending blending) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
MipMapGenerator.java 23 import com.badlogic.gdx.graphics.Pixmap.Blending;
87 Blending blending = Pixmap.getBlending(); local
88 Pixmap.setBlending(Blending.None);
102 Pixmap.setBlending(blending);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
OrthoCachedTiledMapRenderer.java 56 protected boolean blending; field in class:OrthoCachedTiledMapRenderer
140 if (blending) {
154 if (blending) Gdx.gl.glDisable(GL20.GL_BLEND);
182 if (blending) {
196 if (blending) Gdx.gl.glDisable(GL20.GL_BLEND);
433 public void setBlending (boolean blending) {
434 this.blending = blending;
  /hardware/qcom/display/msm8909/libqdutils/
cb_utils.cpp 79 if(((list->hwLayers[i].blending == HWC_BLENDING_NONE) &&
91 // need to take care only in per pixel blending.
93 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.cpp 116 LayerBlending blending = kBlendingPremultiplied; local
119 blending = kBlendingCoverage;
122 blending = kBlendingPremultiplied;
125 blending = kBlendingOpaque;
131 if (layer_->blending != blending) {
133 layer_->blending = blending;
  /hardware/qcom/display/msmcobalt/sdm/libs/hwc2/
hwc_layers.cpp 126 LayerBlending blending = kBlendingPremultiplied; local
129 blending = kBlendingCoverage;
132 blending = kBlendingPremultiplied;
135 blending = kBlendingOpaque;
141 if (layer_->blending != blending) {
143 layer_->blending = blending;
  /hardware/intel/img/hwcomposer/merrifield/include/
DisplayPlane.h 86 virtual void setPlaneAlpha(uint8_t alpha, uint32_t blending);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
DisplayPlane.h 86 virtual void setPlaneAlpha(uint8_t alpha, uint32_t blending);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DepthShader.java 142 final BlendingAttribute blending = (BlendingAttribute)combinedAttributes.get(BlendingAttribute.Type); local
147 if (blending.opacity >= ((FloatAttribute)combinedAttributes.get(FloatAttribute.AlphaTest)).value)
151 combinedAttributes.set(blending);
  /hardware/intel/img/hwcomposer/merrifield/common/planes/
DisplayPlane.cpp 150 void DisplayPlane::setPlaneAlpha(uint8_t alpha, uint32_t blending)
159 if (mBlending != blending) {
160 mBlending = blending;
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdp.h 108 /* set blending method */
109 void setBlending(overlay::utils::eBlending blending);
245 inline void MdpCtrl::setBlending(overlay::utils::eBlending blending) {
246 switch((int) blending) {
  /hardware/qcom/display/msm8226/liboverlay/
overlayMdp.h 108 /* set blending method */
109 void setBlending(overlay::utils::eBlending blending);
215 inline void MdpCtrl::setBlending(overlay::utils::eBlending blending) {
216 switch((int) blending) {
  /hardware/qcom/display/msm8909/liboverlay/
overlayMdp.h 106 /* set blending method */
107 void setBlending(overlay::utils::eBlending blending);
209 inline void MdpCtrl::setBlending(overlay::utils::eBlending blending) {
210 switch((int) blending) {
  /hardware/qcom/display/msm8994/liboverlay/
overlayMdp.h 106 /* set blending method */
107 void setBlending(overlay::utils::eBlending blending);
209 inline void MdpCtrl::setBlending(overlay::utils::eBlending blending) {
210 switch((int) blending) {
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/planes/
DisplayPlane.cpp 166 void DisplayPlane::setPlaneAlpha(uint8_t alpha, uint32_t blending)
175 if (mBlending != blending) {
176 mBlending = blending;
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_dump_layers.cpp 254 "Blending = %s%s%s", mDisplayName, layerIndex,
270 (layer->blending == HWC_BLENDING_NONE)? "[None]":"",
271 (layer->blending == HWC_BLENDING_PREMULT)? "[PreMult]":"",
272 (layer->blending == HWC_BLENDING_COVERAGE)? "[Coverage]":"");

Completed in 567 milliseconds

1 2 3 4 5