Home
last modified time | relevance | path

Searched refs:GetCompletedCommandSerial (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DShaderVisibleDescriptorAllocatorD3D12.cpp190 if (mPool.front().heapSerial <= mDevice->GetCompletedCommandSerial()) { in AllocateAndSwitchShaderVisibleHeap()
240 return (allocation.GetLastUsageSerial() > mDevice->GetCompletedCommandSerial() && in IsAllocationStillValid()
DDeviceD3D12.cpp316 ExecutionSerial completedSerial = GetCompletedCommandSerial(); in TickImpl()
346 if (GetCompletedCommandSerial() < serial) { in WaitForSerial()
366 if (completedSerial <= GetCompletedCommandSerial()) { in CheckAndUpdateCompletedSerials()
DResidencyManagerD3D12.cpp170 if (lastSubmissionSerial > mDevice->GetCompletedCommandSerial()) { in RemoveSingleEntryFromLRU()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DDeviceVk.cpp180 ExecutionSerial completedSerial = GetCompletedCommandSerial(); in TickImpl()
561 ASSERT(fenceSerial > GetCompletedCommandSerial()); in CheckAndUpdateCompletedSerials()
631 for (auto& commands : mCommandsInFlight.IterateUpTo(GetCompletedCommandSerial())) { in RecycleCompletedCommands()
634 mCommandsInFlight.ClearUpTo(GetCompletedCommandSerial()); in RecycleCompletedCommands()
871 ASSERT(fenceSerial > GetCompletedCommandSerial()); in WaitForIdleForDestruction()
971 ExecutionSerial completedSerial = GetCompletedCommandSerial(); in DestroyImpl()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/
DDeviceMTL.mm59 while (GetCompletedCommandSerial() != mLastSubmittedSerial) {
137 Serial Device::GetCompletedCommandSerial() const {
151 Serial completedSerial = GetCompletedCommandSerial();
DDeviceMTL.h43 Serial GetCompletedCommandSerial() const final override;
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DDeviceGL.h50 Serial GetCompletedCommandSerial() const final override;
DDeviceGL.cpp113 Serial Device::GetCompletedCommandSerial() const { in GetCompletedCommandSerial() function in dawn_native::opengl::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DDeviceD3D12.h48 Serial GetCompletedCommandSerial() const final override;
DDeviceD3D12.cpp190 Serial Device::GetCompletedCommandSerial() const { in GetCompletedCommandSerial() function in dawn_native::d3d12::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DDeviceVk.h70 Serial GetCompletedCommandSerial() const final override;
DDeviceVk.cpp190 Serial Device::GetCompletedCommandSerial() const { in GetCompletedCommandSerial() function in dawn_native::vulkan::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/null/
DDeviceNull.h91 Serial GetCompletedCommandSerial() const final override;
DDeviceNull.cpp181 Serial Device::GetCompletedCommandSerial() const { in GetCompletedCommandSerial() function in dawn_native::null::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DDevice.h74 virtual Serial GetCompletedCommandSerial() const = 0;
DDevice.cpp436 mFenceSignalTracker->Tick(GetCompletedCommandSerial()); in Tick()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DDeviceGL.cpp268 ASSERT(fenceSerial > GetCompletedCommandSerial()); in CheckAndUpdateCompletedSerials()
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DDeviceMTL.mm300 uint64_t frontendCompletedSerial{GetCompletedCommandSerial()};
476 while (GetCompletedCommandSerial() != GetLastSubmittedCommandSerial()) {
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DDevice.h145 ExecutionSerial GetCompletedCommandSerial() const;
DDevice.cpp375 mQueue->Tick(GetCompletedCommandSerial()); in Destroy()
597 ExecutionSerial DeviceBase::GetCompletedCommandSerial() const { in GetCompletedCommandSerial() function in dawn_native::DeviceBase