OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hwcId
(Results
1 - 7
of
7
) sorted by null
/frameworks/native/services/surfaceflinger/
Layer.h
238
void forceClientComposition(int32_t
hwcId
);
243
void setCompositionType(int32_t
hwcId
, HWC2::Composition type,
245
HWC2::Composition getCompositionType(int32_t
hwcId
) const;
247
void setClearClientTarget(int32_t
hwcId
, bool clear);
248
bool getClearClientTarget(int32_t
hwcId
) const;
361
bool hasHwcLayer(int32_t
hwcId
) {
362
if (mHwcLayers.count(
hwcId
) == 0) {
365
if (mHwcLayers[
hwcId
].layer->isAbandoned()) {
366
ALOGI("Erasing abandoned layer %s on %d", mName.string(),
hwcId
);
367
mHwcLayers.erase(
hwcId
);
[
all
...]
Layer.cpp
507
const auto
hwcId
= displayDevice->getHwcDisplayId();
508
auto& hwcInfo = mHwcLayers[
hwcId
];
678
void Layer::forceClientComposition(int32_t
hwcId
) {
679
if (mHwcLayers.count(
hwcId
) == 0) {
680
ALOGE("forceClientComposition: no HWC layer found (%d)",
hwcId
);
684
mHwcLayers[
hwcId
].forceClientComposition = true;
695
auto
hwcId
= displayDevice->getHwcDisplayId();
696
auto& hwcLayer = mHwcLayers[
hwcId
].layer;
713
setCompositionType(
hwcId
, HWC2::Composition::Sideband);
725
if (mHwcLayers[
hwcId
].forceClientComposition |
[
all
...]
SurfaceFlinger.cpp
[
all
...]
DisplayDevice.h
89
int32_t
hwcId
,
DisplayDevice.cpp
76
int32_t
hwcId
,
88
mHwcDisplayId(
hwcId
),
596
" type=%x,
hwcId
=%d, layerStack=%u, (%4dx%4d), ANativeWindow=%p, orient=%2d (type=%08x), "
SurfaceFlinger_hwc1.cpp
507
int32_t
hwcId
= allocateHwcDisplayId(type);
509
type,
hwcId
, mHwc->getFormat(
hwcId
), isSecure, token,
[
all
...]
/frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp
774
auto
hwcId
= displayData.hwcDisplay->getId();
775
mHwcDisplaySlots.erase(
hwcId
);
Completed in 79 milliseconds