Remove not needed methods.

Change-Id: If8be6e18054381cabba129fc0d05802f32cc0d34
This commit is contained in:
Mrozek, Michal
2018-01-08 17:09:09 +01:00
parent b00819cafe
commit 45990a8181
5 changed files with 0 additions and 39 deletions

View File

@@ -95,17 +95,6 @@ void Context::overrideSpecialQueueAndDecrementRefCount(CommandQueue *commandQueu
this->decRefInternal();
};
bool Context::isSpecialQueue(CommandQueue *commandQueue) {
return specialQueue == commandQueue;
};
void Context::deleteSpecialQueue() {
if (specialQueue) {
delete specialQueue;
specialQueue = nullptr;
}
}
bool Context::createImpl(const cl_context_properties *properties,
const DeviceVector &devices,
void(CL_CALLBACK *funcNotify)(const char *, const void *, size_t, void *),

View File

@@ -93,8 +93,6 @@ class Context : public BaseObject<_cl_context> {
CommandQueue *getSpecialQueue();
void setSpecialQueue(CommandQueue *commandQueue);
void overrideSpecialQueueAndDecrementRefCount(CommandQueue *commandQueue);
bool isSpecialQueue(CommandQueue *commandQueue);
void deleteSpecialQueue();
template <typename Sharing>
Sharing *getSharing();