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

1 2

  /external/skia/tests/
SkColorSpace_NewTest.cpp 16 auto blending = SkColorSpace_New::Blending::AsEncoded; local
18 SkColorSpace_New linearA{SkColorSpace_New::TransferFn::MakeLinear(), gamut, blending},
19 linearB{SkColorSpace_New::TransferFn::MakeGamma(1), gamut, blending},
20 srgb{SkColorSpace_New::TransferFn::MakeSRGB(), gamut, blending},
21 gamma{SkColorSpace_New::TransferFn::MakeGamma(2.2f), gamut, blending};
43 // blending the same src color over the same dst color, but with
53 auto blending = SkColorSpace_New::Blending::Linear; local
54 SkColorSpace_New linear{SkColorSpace_New::TransferFn::MakeLinear(), gamut, blending},
    [all...]
  /external/skqp/tests/
SkColorSpace_NewTest.cpp 16 auto blending = SkColorSpace_New::Blending::AsEncoded; local
18 SkColorSpace_New linearA{SkColorSpace_New::TransferFn::MakeLinear(), gamut, blending},
19 linearB{SkColorSpace_New::TransferFn::MakeGamma(1), gamut, blending},
20 srgb{SkColorSpace_New::TransferFn::MakeSRGB(), gamut, blending},
21 gamma{SkColorSpace_New::TransferFn::MakeGamma(2.2f), gamut, blending};
43 // blending the same src color over the same dst color, but with
53 auto blending = SkColorSpace_New::Blending::Linear; local
54 SkColorSpace_New linear{SkColorSpace_New::TransferFn::MakeLinear(), gamut, blending},
    [all...]
  /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...]
GGLAssembler.cpp 142 const int blending = blending_codes(mBlendSrc, mBlendDst) | local
237 if ((blending & (FACTOR_DST|BLEND_DST)) ||
241 // blending / logic_op / masking need the framebuffer
471 // blending...
489 // Figure out what we need for the blending stage...
497 const int blending = blending_codes(fs, fd); local
520 (blending & (BLEND_SRC|FACTOR_SRC)) : need_expander));
566 // We keep only 8 bits for the blending stage
    [all...]
  /external/skia/src/core/
SkColorSpace_New.h 49 enum class Blending { Linear, AsEncoded };
51 SkColorSpace_New(sk_sp<TransferFn>, SkMatrix44 toXYZD50, Blending);
56 Blending blending() const { return fBlending; } function in class:final
76 Blending fBlending;
  /external/skqp/src/core/
SkColorSpace_New.h 49 enum class Blending { Linear, AsEncoded };
51 SkColorSpace_New(sk_sp<TransferFn>, SkMatrix44 toXYZD50, Blending);
56 Blending blending() const { return fBlending; } function in class:final
76 Blending fBlending;
  /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;
  /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;
  /external/drm_hwcomposer/
drmhwcomposer.h 143 DrmHwcBlending blending = DrmHwcBlending::kNone; member in struct:android::DrmHwcLayer
  /hardware/libhardware/include/hardware/
hwcomposer.h 102 * some reason (e.g. unsupported scaling/blending/rotation, or too many
154 /* blending to apply during composition */
155 int32_t blending; member in struct:hwc_layer_1::__anon48238::__anon48239
235 * if (blending == HWC_BLENDING_PREMULT)
239 * Then blending proceeds as usual according to the "blending"
245 * if (blending == HWC_BLENDING_PREMULT)
259 * if (blending == HWC_BLENDING_PREMULT)
260 * blending = HWC_BLENDING_COVERAGE;
    [all...]
  /hardware/qcom/display/msm8996/sdm/include/core/
layer_stack.h 29 under blending rules.
44 /*! @brief This enum represents display layer blending types.
273 LayerBlending blending = kBlendingPremultiplied; //!< Blending operation which need to be member in struct:sdm::Layer
  /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/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcLayerList.cpp 97 // check layer blending
100 VLOGTRACE("plane type %d: (bad blending)", planeType);
153 uint32_t blending = (uint32_t)hwcLayer->getLayer()->blending; local
154 if (blending != HWC_BLENDING_NONE) {
1037 mLayers[i]->getHandle(), l.hints, l.flags, l.transform, l.blending, l.planeAlpha, mLayers[i]->getFormat()
    [all...]
  /hardware/qcom/display/msm8909/sdm/include/core/
layer_stack.h 29 under blending rules.
44 /*! @brief This enum represents display layer blending types.
336 LayerBlending blending = kBlendingPremultiplied; //!< Blending operation which need to be member in struct:sdm::Layer
  /hardware/qcom/display/msm8909/sdm/libs/hwc2/
hwc_layers.cpp 289 LayerBlending blending = kBlendingPremultiplied; local
292 blending = kBlendingCoverage;
295 blending = kBlendingPremultiplied;
298 blending = kBlendingOpaque;
304 if (layer_->blending != blending) {
306 layer_->blending = blending;
  /hardware/qcom/display/msm8909w_3100/sdm/include/core/
layer_stack.h 29 under blending rules.
44 /*! @brief This enum represents display layer blending types.
336 LayerBlending blending = kBlendingPremultiplied; //!< Blending operation which need to be member in struct:sdm::Layer
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/
hwc_layers.cpp 190 LayerBlending blending = kBlendingPremultiplied; local
193 blending = kBlendingCoverage;
196 blending = kBlendingPremultiplied;
199 blending = kBlendingOpaque;
205 if (layer_->blending != blending) {
207 layer_->blending = blending;
  /hardware/qcom/display/msm8998/sdm/include/core/
layer_stack.h 29 under blending rules.
44 /*! @brief This enum represents display layer blending types.
335 LayerBlending blending = kBlendingPremultiplied; //!< Blending operation which need to be member in struct:sdm::Layer
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_layers.cpp 301 LayerBlending blending = kBlendingPremultiplied; local
304 blending = kBlendingCoverage;
307 blending = kBlendingPremultiplied;
310 blending = kBlendingOpaque;
316 if (layer_->blending != blending) {
318 layer_->blending = blending;
  /hardware/qcom/display/msm8909/sdm/libs/core/drm/
hw_device_drm.cpp 620 DRMBlendType blending = {}; local
621 SetBlending(layer.blending, &blending);
622 drm_atomic_intf_->Perform(DRMOps::PLANE_SET_BLEND_TYPE, pipe_id, blending);
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/
hw_device_drm.cpp 615 DRMBlendType blending = {}; local
616 SetBlending(layer.blending, &blending);
617 drm_atomic_intf_->Perform(DRMOps::PLANE_SET_BLEND_TYPE, pipe_id, blending);
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/core/drm/
hw_device_drm.cpp 403 DRMBlendType blending = {}; local
404 SetBlending(layer.blending, &blending);
405 drm_atomic_intf_->Perform(DRMOps::PLANE_SET_BLEND_TYPE, pipe_id, blending);
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.cpp 1023 HWC::BlendMode blending = local
    [all...]
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.h 312 /* No blending */
327 blending(OVERLAY_BLENDING_COVERAGE){
339 blending(b){
348 eBlending blending; member in struct:overlay::utils::PipeArgs

Completed in 778 milliseconds

1 2