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

1 2 3 4 5

  /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
77 const int blending = blending_codes(fs, fd); local
79 // here, blending will produce something which doesn't depend on
85 // we are doing real blending...
92 comment("blending");
122 if (blending & (BLEND_DST|FACTOR_DST)) {
161 if ((blending & BLEND_SRC) && !same_factor_opt1) {
162 // source (fragment) is needed for the blending stage
188 // if destination (fb) is not needed for the blending stage,
190 if (!(blending & BLEND_DST))
    [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 55 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) ||
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.cpp 55 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) ||
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.cpp 55 if(((list->hwLayers[i].blending == HWC_BLENDING_NONE) &&
67 // need to take care only in per pixel blending.
69 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /hardware/qcom/display/msm8909/libqdutils/
cb_utils.cpp 80 if(((list->hwLayers[i].blending == HWC_BLENDING_NONE) &&
92 // need to take care only in per pixel blending.
94 if((list->hwLayers[i].blending != HWC_BLENDING_NONE) ||
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.cpp 137 LayerBlending blending = kBlendingPremultiplied; local
140 blending = kBlendingCoverage;
143 blending = kBlendingPremultiplied;
146 blending = kBlendingOpaque;
152 if (layer_->blending != blending) {
154 layer_->blending = blending;
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_layers.cpp 295 LayerBlending blending = kBlendingPremultiplied; local
298 blending = kBlendingCoverage;
301 blending = kBlendingPremultiplied;
304 blending = kBlendingOpaque;
310 if (layer_->blending != blending) {
312 layer_->blending = blending;
  /hardware/qcom/display/sdm845/sdm/libs/hwc2/
hwc_layers.cpp 172 LayerBlending blending = kBlendingPremultiplied; local
175 blending = kBlendingCoverage;
178 blending = kBlendingPremultiplied;
181 blending = kBlendingOpaque;
187 if (layer_->blending != blending) {
189 layer_->blending = blending;
  /system/core/libpixelflinger/
Android.mk 15 codeflinger/blending.cpp \
  /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);
  /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) {
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.cpp 889 HWC::BlendMode blending =
899 search->SetBlending(blending);
908 layers.emplace_back(surface, blending, display_transform_,
    [all...]
hardware_composer.h 61 // |blending| receives HWC_BLENDING_* values.
67 HWC::BlendMode blending, HWC::Transform transform,
74 // |blending| receives HWC_BLENDING_* values.
78 Layer(const std::shared_ptr<IonBuffer>& buffer, HWC::BlendMode blending,
107 // Sets the blending for the layer. |blending| receives HWC_BLENDING_* values.
108 void SetBlending(HWC::BlendMode 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/msm8960/libhwcomposer/
hwc_fbupdate.cpp 92 (ovutils::eBlending) getBlending(layer->blending));
204 (ovutils::eBlending) getBlending(layer->blending));
215 (ovutils::eBlending) getBlending(layer->blending));
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdp.h 105 /* set blending method */
106 void setBlending(overlay::utils::eBlending blending);
250 inline void MdpCtrl::setBlending(overlay::utils::eBlending blending) {
252 switch((int) blending) {
  /external/drm_hwcomposer/
drmhwcomposer.h 143 DrmHwcBlending blending = DrmHwcBlending::kNone; member in struct:android::DrmHwcLayer

Completed in 747 milliseconds

1 2 3 4 5