Esempio n. 1
0
dpoCKernel::dpoCKernel(dpoIContext *aParent)
{
    DEBUG_LOG_CREATE("dpoCKernel", this);
    parent = aParent;
    kernel = NULL;
    cmdQueue = NULL;
}
Esempio n. 2
0
CData::CData(CContext* aParent)
    : m_parent(aParent)
    , m_queue(0)
    , m_memObj(0)
{
    DEBUG_LOG_CREATE("CData", this);
#ifdef PREALLOCATE_IN_JS_HEAP
    m_isMapped = false;
#endif // PREALLOCATE_IN_JS_HEAP
}
Esempio n. 3
0
dpoCContext::dpoCContext(dpoIPlatform *aParent)
{
	DEBUG_LOG_CREATE("dpoCContext", this);
	parent = aParent;
	buildLog = NULL;
	cmdQueue = NULL;
#ifdef CLPROFILE
	clp_exec_start = 0;
	clp_exec_end = 0;
#endif /* CLPROFILE */
#ifdef WINDOWS_ROUNDTRIP
	wrt_exec_start.QuadPart = -1;
	wrt_exec_end.QuadPart = -1;
#endif /* WINDOWS_ROUNDTRIP */
}
Esempio n. 4
0
dpoCInterface::dpoCInterface()
{
  	DEBUG_LOG_CREATE("dpoCInterface", this);
}
Esempio n. 5
0
CInterface::CInterface()
{
  	DEBUG_LOG_CREATE("CInterface", this);
	platforms = NULL;
}