Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DFenceSignalTracker.cpp33 mDevice->GetLastSubmittedCommandSerial()); in UpdateFenceOnComplete()
DDevice.h75 virtual Serial GetLastSubmittedCommandSerial() const = 0;
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DDeviceGL.h51 Serial GetLastSubmittedCommandSerial() const final override;
DDeviceGL.cpp117 Serial Device::GetLastSubmittedCommandSerial() const { in GetLastSubmittedCommandSerial() function in dawn_native::opengl::Device
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DDeviceD3D12.cpp98 CheckHRESULT(mD3d12Device->CreateFence(uint64_t(GetLastSubmittedCommandSerial()), in Initialize()
340 mCommandQueue->Signal(mFence.Get(), uint64_t(GetLastSubmittedCommandSerial())), in NextSerial()
614 DAWN_TRY(WaitForSerial(GetLastSubmittedCommandSerial())); in WaitForIdleForDestruction()
DSwapChainD3D12.cpp363 DAWN_TRY(device->WaitForSerial(device->GetLastSubmittedCommandSerial())); in DetachAndWaitForDeallocation()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/
DDeviceMTL.h44 Serial GetLastSubmittedCommandSerial() const final override;
DDeviceMTL.mm142 Serial Device::GetLastSubmittedCommandSerial() const {
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DDeviceD3D12.h49 Serial GetLastSubmittedCommandSerial() const final override;
DDeviceD3D12.cpp194 Serial Device::GetLastSubmittedCommandSerial() const { in GetLastSubmittedCommandSerial() function in dawn_native::d3d12::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DDeviceVk.h71 Serial GetLastSubmittedCommandSerial() const final override;
DDeviceVk.cpp194 Serial Device::GetLastSubmittedCommandSerial() const { in GetLastSubmittedCommandSerial() function in dawn_native::vulkan::Device
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/null/
DDeviceNull.h92 Serial GetLastSubmittedCommandSerial() const final override;
DDeviceNull.cpp185 Serial Device::GetLastSubmittedCommandSerial() const { in GetLastSubmittedCommandSerial() function in dawn_native::null::Device
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DDeviceGL.cpp179 mFencesInFlight.emplace(sync, GetLastSubmittedCommandSerial()); in SubmitFenceSync()
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DDeviceMTL.mm369 ExecutionSerial pendingSerial = GetLastSubmittedCommandSerial();
476 while (GetCompletedCommandSerial() != GetLastSubmittedCommandSerial()) {
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/
DDeviceNull.cpp244 return GetLastSubmittedCommandSerial(); in CheckAndUpdateCompletedSerials()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DDevice.h146 ExecutionSerial GetLastSubmittedCommandSerial() const;
DDevice.cpp601 ExecutionSerial DeviceBase::GetLastSubmittedCommandSerial() const { in GetLastSubmittedCommandSerial() function in dawn_native::DeviceBase
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DDeviceVk.cpp287 ExecutionSerial lastSubmittedSerial = GetLastSubmittedCommandSerial(); in SubmitPendingCommands()