Home
last modified time | relevance | path

Searched refs:mIgnoreLayers (Results 1 – 2 of 2) sorted by relevance

/hardware/google/graphics/common/libhwc2.1/libdevice/
DExynosDisplay.cpp1190 auto it = std::find(mIgnoreLayers.begin(), mIgnoreLayers.end(), layer); in destroyLayer()
1191 if (it == mIgnoreLayers.end()) { in destroyLayer()
1194 mIgnoreLayers.erase(it); in destroyLayer()
1225 for (auto it = mIgnoreLayers.begin(); it != mIgnoreLayers.end();) { in destroyLayers()
1227 it = mIgnoreLayers.erase(it); in destroyLayers()
1241 if (mIgnoreLayers.size()) { in checkLayer()
1242 auto it = std::find(mIgnoreLayers.begin(), mIgnoreLayers.end(), temp); in checkLayer()
1243 return (it == mIgnoreLayers.end()) ? NULL : *it; in checkLayer()
1252 for (auto it = mIgnoreLayers.begin(); it != mIgnoreLayers.end();) { in checkIgnoreLayers()
1256 it = mIgnoreLayers.erase(it); in checkIgnoreLayers()
[all …]
DExynosDisplay.h487 std::vector<ExynosLayer*> mIgnoreLayers; variable