Home
last modified time | relevance | path

Searched refs:commandQueue (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DCLCommandQueueImpl.cpp13 CLCommandQueueImpl::CLCommandQueueImpl(const cl::CommandQueue &commandQueue) in CLCommandQueueImpl() argument
14 : mCommandQueue(commandQueue) in CLCommandQueueImpl()
DCLContextImpl.h30 virtual CLCommandQueueImpl::Ptr createCommandQueue(const cl::CommandQueue &commandQueue,
DCLCommandQueueImpl.h21 CLCommandQueueImpl(const cl::CommandQueue &commandQueue);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DCLCommandQueueVk.cpp13 CLCommandQueueVk::CLCommandQueueVk(const cl::CommandQueue &commandQueue) in CLCommandQueueVk() argument
14 : CLCommandQueueImpl(commandQueue) in CLCommandQueueVk()
DCLCommandQueueVk.h22 CLCommandQueueVk(const cl::CommandQueue &commandQueue);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
DCLContextCL.cpp86 CLCommandQueueImpl::Ptr CLContextCL::createCommandQueue(const cl::CommandQueue &commandQueue, in createCommandQueue() argument
89 const cl::Device &device = commandQueue.getDevice(); in createCommandQueue()
95 mNative, nativeDevice, commandQueue.getProperties().get(), &errorCode); in createCommandQueue()
100 CL_QUEUE_PROPERTIES, commandQueue.getProperties().get(), in createCommandQueue()
101 commandQueue.hasSize() ? CL_QUEUE_SIZE : 0u, commandQueue.getSize(), 0u}; in createCommandQueue()
106 nativeQueue != nullptr ? new CLCommandQueueCL(commandQueue, nativeQueue) : nullptr); in createCommandQueue()
DCLCommandQueueCL.cpp40 CLCommandQueueCL::CLCommandQueueCL(const cl::CommandQueue &commandQueue, cl_command_queue native) in CLCommandQueueCL() argument
41 : CLCommandQueueImpl(commandQueue), mNative(native) in CLCommandQueueCL()
43 if (commandQueue.getProperties().isSet(CL_QUEUE_ON_DEVICE)) in CLCommandQueueCL()
45 commandQueue.getContext().getImpl<CLContextCL>().mData->mDeviceQueues.emplace( in CLCommandQueueCL()
46 commandQueue.getNative()); in CLCommandQueueCL()
DCLContextCL.h35 CLCommandQueueImpl::Ptr createCommandQueue(const cl::CommandQueue &commandQueue,
DCLCommandQueueCL.h20 CLCommandQueueCL(const cl::CommandQueue &commandQueue, cl_command_queue native);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DProvokingVertexHelper.h28 mtl::CommandQueue *commandQueue,
DProvokingVertexHelper.mm91 mtl::CommandQueue *commandQueue,
93 : mCommandBuffer(commandQueue),
/third_party/skia/third_party/externals/imgui/examples/example_glfw_metal/
Dmain.mm64 id <MTLCommandQueue> commandQueue = [device newCommandQueue];
101 id<MTLCommandBuffer> commandBuffer = [commandQueue commandBuffer];
/third_party/skia/third_party/externals/imgui/examples/example_sdl_metal/
Dmain.mm75 id<MTLCommandQueue> commandQueue = [layer.device newCommandQueue];
109 id<MTLCommandBuffer> commandBuffer = [commandQueue commandBuffer];
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12Sample.cpp453 ID3D12CommandQueue* commandQueue = nullptr; in InitD3D() local
454 …CHECK_HR( g_Device->CreateCommandQueue(&cqDesc, IID_PPV_ARGS(&commandQueue)) ); // create the comm… in InitD3D()
455 g_CommandQueue.Attach(commandQueue); in InitD3D()
1152 commandQueue->ExecuteCommandLists(_countof(ppCommandLists), ppCommandLists); in InitD3D()
/third_party/skia/third_party/externals/imgui/examples/example_apple_metal/
Dmain.mm30 @property (nonatomic, strong) id <MTLCommandQueue> commandQueue; property
142 id<MTLCommandBuffer> commandBuffer = [self.commandQueue commandBuffer];
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DvalidationCL.cpp168 cl_int ValidateCommandQueueAndEventWaitList(cl_command_queue commandQueue, in ValidateCommandQueueAndEventWaitList() argument
174 if (!CommandQueue::IsValid(commandQueue)) in ValidateCommandQueueAndEventWaitList()
178 const CommandQueue &queue = commandQueue->cast<CommandQueue>(); in ValidateCommandQueueAndEventWaitList()
/third_party/mesa3d/include/CL/
Dcl2.hpp7441 explicit CommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
7442 detail::Wrapper<cl_type>(commandQueue, retainObject) { }
8821 explicit DeviceCommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
8822 detail::Wrapper<cl_type>(commandQueue, retainObject) { }
Dcl.hpp5686 …CONSTRUCTORS CommandQueue(const cl_command_queue& commandQueue) : detail::Wrapper<cl_type>(command… in CommandQueue() argument