Home
last modified time | relevance | path

Searched refs:QueueBase (Results 1 – 25 of 43) sorted by relevance

12

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DQueue.cpp134 struct SubmittedWorkDone : QueueBase::TaskInFlight {
155 class ErrorQueue : public QueueBase {
157 ErrorQueue(DeviceBase* device) : QueueBase(device, ObjectBase::kError) { in ErrorQueue()
170 QueueBase::TaskInFlight::~TaskInFlight() { in ~TaskInFlight()
173 QueueBase::QueueBase(DeviceBase* device) : ApiObjectBase(device, kLabelNotImplemented) { in QueueBase() function in dawn_native::QueueBase
176 QueueBase::QueueBase(DeviceBase* device, ObjectBase::ErrorTag tag) in QueueBase() function in dawn_native::QueueBase
180 QueueBase::~QueueBase() { in ~QueueBase()
184 void QueueBase::DestroyImpl() { in DestroyImpl()
188 QueueBase* QueueBase::MakeError(DeviceBase* device) { in MakeError()
192 ObjectType QueueBase::GetType() const { in GetType()
[all …]
DQueue.h28 class QueueBase : public ApiObjectBase {
36 ~QueueBase() override;
38 static QueueBase* MakeError(DeviceBase* device);
70 QueueBase(DeviceBase* device);
71 QueueBase(DeviceBase* device, ObjectBase::ErrorTag tag);
DDevice.h258 QueueBase* APIGetQueue();
326 QueueBase* GetQueue() const;
379 MaybeError Initialize(QueueBase* defaultQueue);
508 Ref<QueueBase> mQueue;
DForward.h40 class QueueBase; variable
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DQueue.cpp28 QueueBase::QueueBase(DeviceBase* device) : ObjectBase(device) { in QueueBase() function in dawn_native::QueueBase
31 void QueueBase::Submit(uint32_t commandCount, CommandBufferBase* const* commands) { in Submit()
40 void QueueBase::Signal(FenceBase* fence, uint64_t signalValue) { in Signal()
50 FenceBase* QueueBase::CreateFence(const FenceDescriptor* descriptor) { in CreateFence()
58 MaybeError QueueBase::ValidateSubmit(uint32_t commandCount, in ValidateSubmit()
87 MaybeError QueueBase::ValidateSignal(const FenceBase* fence, uint64_t signalValue) { in ValidateSignal()
101 MaybeError QueueBase::ValidateCreateFence(const FenceDescriptor* descriptor) { in ValidateCreateFence()
DFence.h33 FenceBase(QueueBase* queue, const FenceDescriptor* descriptor);
39 const QueueBase* GetQueue() const;
46 friend class QueueBase;
63 Ref<QueueBase> mQueue;
DQueue.h26 class QueueBase : public ObjectBase {
28 QueueBase(DeviceBase* device);
DFence.cpp36 FenceBase::FenceBase(QueueBase* queue, const FenceDescriptor* descriptor) in FenceBase()
91 const QueueBase* FenceBase::GetQueue() const { in GetQueue()
DDevice.h127 QueueBase* CreateQueue();
171 virtual ResultOrError<QueueBase*> CreateQueueImpl() = 0;
195 MaybeError CreateQueueInternal(QueueBase** result);
DForward.h34 class QueueBase; variable
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DQueueVk.h24 class Queue final : public QueueBase {
31 using QueueBase::QueueBase;
DQueueVk.cpp35 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DQueueD3D12.h27 class Queue final : public QueueBase {
DQueueD3D12.cpp29 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DQueueGL.h25 class Queue : public QueueBase {
DQueueGL.cpp22 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/
DQueueMTL.h25 class Queue : public QueueBase {
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DQueueMTL.h24 class Queue final : public QueueBase {
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DQueueVk.h25 class Queue : public QueueBase {
DQueueVk.cpp22 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DQueueD3D12.h27 class Queue : public QueueBase {
DQueueD3D12.cpp22 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DQueueGL.h24 class Queue final : public QueueBase {
DQueueGL.cpp26 Queue::Queue(Device* device) : QueueBase(device) { in Queue()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/null/
DDeviceNull.h119 ResultOrError<QueueBase*> CreateQueueImpl() override;
175 class Queue : public QueueBase {

12