Lines Matching refs:mPendingGarbage
45 mPendingGarbage.push_back(PendingGarabage{ in AddPendingGarbage()
51 if (mPendingGarbage.size() > kSizeLoggingThreshold) { in AddPendingGarbage()
52 WARN("VkDevice:%p has %d pending garbage objects.", mDevice, mPendingGarbage.size()); in AddPendingGarbage()
59 mPendingGarbage.push_back(PendingGarabage{ in AddPendingGarbage()
65 if (mPendingGarbage.size() > kSizeLoggingThreshold) { in AddPendingGarbage()
66 WARN("VkDevice:%p has %d pending garbage objects.", mDevice, mPendingGarbage.size()); in AddPendingGarbage()
103 auto firstPendingIt = std::find_if(mPendingGarbage.begin(), mPendingGarbage.end(), in PollAndProcessGarbage()
111 for (auto it = mPendingGarbage.begin(); it != firstPendingIt; it++) { in PollAndProcessGarbage()
136 mPendingGarbage.erase(mPendingGarbage.begin(), firstPendingIt); in PollAndProcessGarbage()
138 if (mPendingGarbage.size() > kSizeLoggingThreshold) { in PollAndProcessGarbage()
139 WARN("VkDevice:%p has %d pending garbage objects.", mDevice, mPendingGarbage.size()); in PollAndProcessGarbage()
151 if (!mPendingGarbage.empty()) { in OnDestroyDevice()
153 mPendingGarbage.size()); in OnDestroyDevice()