Home
last modified time | relevance | path

Searched refs:CLContextCL (Results 1 – 11 of 11) sorted by relevance

/external/angle/src/libANGLE/renderer/cl/
DCLContextCL.cpp33 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 …]
DCLContextCL.h23 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()
DCLSamplerCL.cpp21 sampler.getContext().getImpl<CLContextCL>().mData->mSamplers.emplace(sampler.getNative()); in CLSamplerCL()
27 mSampler.getContext().getImpl<CLContextCL>().mData->mSamplers.erase(mSampler.getNative()); in ~CLSamplerCL()
DCLMemoryCL.cpp21 memory.getContext().getImpl<CLContextCL>().mData->mMemories.emplace(memory.getNative()); in CLMemoryCL()
27 mMemory.getContext().getImpl<CLContextCL>().mData->mMemories.erase(mMemory.getNative()); in ~CLMemoryCL()
DBUILD.gn14 "CLContextCL.cpp",
15 "CLContextCL.h",
Dcl_types.h17 class CLContextCL; variable
DCLPlatformCL.h45 friend class CLContextCL; variable
DCLProgramCL.h60 friend class CLContextCL; variable
DCLKernelCL.cpp135 const CLContextCL &ctx = mKernel.getProgram().getContext().getImpl<CLContextCL>(); in setArg()
DCLPlatformCL.cpp400 return CLContextImpl::Ptr(nativeContext != nullptr ? new CLContextCL(context, nativeContext) in createContext()
415 return CLContextImpl::Ptr(nativeContext != nullptr ? new CLContextCL(context, nativeContext) in createContextFromType()
DCLCommandQueueCL.cpp45 commandQueue.getContext().getImpl<CLContextCL>().mData->mDeviceQueues.emplace( in CLCommandQueueCL()
55 mCommandQueue.getContext().getImpl<CLContextCL>().mData->mDeviceQueues.erase( in ~CLCommandQueueCL()