Change for OpenCL2.2 header promotion

Change-Id: Icd579e5c94af6e8d984a3f6c2606be44dec72e91
This commit is contained in:
Saleel Kudchadker
2020-03-25 11:06:08 -07:00
committato da Payam Ghafari
parent 2a223ecec6
commit a97f206ab1
3 ha cambiato i file con 6 aggiunte e 6 eliminazioni
+4 -4
Vedi File
@@ -61,11 +61,11 @@ CL_TYPES_DO(DECLARE_CL_TYPES);
#undef DECLARE_CL_TYPES
struct KHRicdVendorDispatchRec;
typedef struct _cl_icd_dispatch cl_icd_dispatch;
#define DECLARE_CL_TYPES(CL, AMD) \
typedef struct _##CL { \
struct KHRicdVendorDispatchRec* dispatch; \
cl_icd_dispatch* dispatch; \
} * CL;
AMD_CL_TYPES_DO(DECLARE_CL_TYPES);
@@ -108,8 +108,8 @@ CL_TYPES_DO(DEFINE_CL_TRAITS);
//! \endcond
struct ICDDispatchedObject {
static struct KHRicdVendorDispatchRec icdVendorDispatch_[];
const struct KHRicdVendorDispatchRec* const dispatch_;
static cl_icd_dispatch icdVendorDispatch_[];
const cl_icd_dispatch* const dispatch_;
protected:
ICDDispatchedObject() : dispatch_(icdVendorDispatch_) {}