• Home
  • Raw
  • Download

Lines Matching refs:getDispatch

39     if (mNative->getDispatch().clReleaseContext(mNative) != CL_SUCCESS)  in ~CLContextCL()
48 errorCode = mNative->getDispatch().clGetContextInfo(mNative, CL_CONTEXT_DEVICES, 0u, nullptr, in getDevices()
53 errorCode = mNative->getDispatch().clGetContextInfo(mNative, CL_CONTEXT_DEVICES, valueSize, in getDevices()
94 nativeQueue = mNative->getDispatch().clCreateCommandQueue( in createCommandQueue()
102 nativeQueue = mNative->getDispatch().clCreateCommandQueueWithProperties( in createCommandQueue()
117 nativeBuffer = mNative->getDispatch().clCreateBuffer(mNative, buffer.getFlags().get(), size, in createBuffer()
122 nativeBuffer = mNative->getDispatch().clCreateBufferWithProperties( in createBuffer()
150 nativeImage = mNative->getDispatch().clCreateImage(mNative, flags.get(), &format, in createImage()
155 nativeImage = mNative->getDispatch().clCreateImageWithProperties( in createImage()
165 nativeImage = mNative->getDispatch().clCreateImage2D( in createImage()
170 nativeImage = mNative->getDispatch().clCreateImage3D( in createImage()
192 ANGLE_CL_TRY(mNative->getDispatch().clGetSupportedImageFormats( in getSupportedImageFormats()
195 ANGLE_CL_TRY(mNative->getDispatch().clGetSupportedImageFormats( in getSupportedImageFormats()
226 nativeSampler = mNative->getDispatch().clCreateSampler( in createSampler()
232 nativeSampler = mNative->getDispatch().clCreateSamplerWithProperties( in createSampler()
245 mNative->getDispatch().clCreateSamplerWithProperties(mNative, propArray, &errorCode); in createSampler()
257 const cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithSource( in createProgramWithSource()
269 mNative->getDispatch().clCreateProgramWithIL(mNative, il, length, &errorCode); in createProgramWithIL()
286 cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithBinary( in createProgramWithBinary()
303 const cl_program nativeProgram = mNative->getDispatch().clCreateProgramWithBuiltInKernels( in createProgramWithBuiltInKernels()
334 const cl_program nativeProgram = mNative->getDispatch().clLinkProgram( in linkProgram()
343 const cl_event nativeEvent = mNative->getDispatch().clCreateUserEvent(mNative, &errorCode); in createUserEvent()
350 return mNative->getDispatch().clWaitForEvents(static_cast<cl_uint>(nativeEvents.size()), in waitForEvents()