Searched refs:CLContextCL (Results 1 – 11 of 11) sorted by relevance
/external/angle/src/libANGLE/renderer/cl/ |
D | CLContextCL.cpp | 33 CLContextCL::CLContextCL(const cl::Context &context, cl_context native) in CLContextCL() function in rx::CLContextCL 37 CLContextCL::~CLContextCL() in ~CLContextCL() 45 cl::DevicePtrs CLContextCL::getDevices(cl_int &errorCode) const in getDevices() 86 CLCommandQueueImpl::Ptr CLContextCL::createCommandQueue(const cl::CommandQueue &commandQueue, in createCommandQueue() 109 CLMemoryImpl::Ptr CLContextCL::createBuffer(const cl::Buffer &buffer, in createBuffer() 130 CLMemoryImpl::Ptr CLContextCL::createImage(const cl::Image &image, in createImage() 184 cl_int CLContextCL::getSupportedImageFormats(cl::MemFlags flags, in getSupportedImageFormats() 221 CLSamplerImpl::Ptr CLContextCL::createSampler(const cl::Sampler &sampler, cl_int &errorCode) in createSampler() 251 CLProgramImpl::Ptr CLContextCL::createProgramWithSource(const cl::Program &program, in createProgramWithSource() 263 CLProgramImpl::Ptr CLContextCL::createProgramWithIL(const cl::Program &program, in createProgramWithIL() [all …]
|
D | CLContextCL.h | 23 class CLContextCL : public CLContextImpl 26 CLContextCL(const cl::Context &context, cl_context native); 27 ~CLContextCL() override; 105 inline bool CLContextCL::hasMemory(cl_mem memory) const in hasMemory() 111 inline bool CLContextCL::hasSampler(cl_sampler sampler) const in hasSampler() 117 inline bool CLContextCL::hasDeviceQueue(cl_command_queue queue) const in hasDeviceQueue()
|
D | CLSamplerCL.cpp | 21 sampler.getContext().getImpl<CLContextCL>().mData->mSamplers.emplace(sampler.getNative()); in CLSamplerCL() 27 mSampler.getContext().getImpl<CLContextCL>().mData->mSamplers.erase(mSampler.getNative()); in ~CLSamplerCL()
|
D | CLMemoryCL.cpp | 21 memory.getContext().getImpl<CLContextCL>().mData->mMemories.emplace(memory.getNative()); in CLMemoryCL() 27 mMemory.getContext().getImpl<CLContextCL>().mData->mMemories.erase(mMemory.getNative()); in ~CLMemoryCL()
|
D | BUILD.gn | 14 "CLContextCL.cpp", 15 "CLContextCL.h",
|
D | cl_types.h | 17 class CLContextCL; variable
|
D | CLPlatformCL.h | 45 friend class CLContextCL; variable
|
D | CLProgramCL.h | 60 friend class CLContextCL; variable
|
D | CLKernelCL.cpp | 135 const CLContextCL &ctx = mKernel.getProgram().getContext().getImpl<CLContextCL>(); in setArg()
|
D | CLPlatformCL.cpp | 400 return CLContextImpl::Ptr(nativeContext != nullptr ? new CLContextCL(context, nativeContext) in createContext() 415 return CLContextImpl::Ptr(nativeContext != nullptr ? new CLContextCL(context, nativeContext) in createContextFromType()
|
D | CLCommandQueueCL.cpp | 45 commandQueue.getContext().getImpl<CLContextCL>().mData->mDeviceQueues.emplace( in CLCommandQueueCL() 55 mCommandQueue.getContext().getImpl<CLContextCL>().mData->mDeviceQueues.erase( in ~CLCommandQueueCL()
|