File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
sycl/include/CL/sycl/detail Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -25,23 +25,23 @@ namespace detail {
25
25
// List of all dataless properties' IDs
26
26
enum DataLessPropKind {
27
27
BufferUseHostPtr = 0 ,
28
- ImageUseHostPtr,
29
- QueueEnableProfiling,
30
- InOrder,
31
- NoInit,
32
- BufferUsePinnedHostMemory,
33
- UsePrimaryContext,
34
- DataLessPropKindSize
28
+ ImageUseHostPtr = 1 ,
29
+ QueueEnableProfiling = 2 ,
30
+ InOrder = 3 ,
31
+ NoInit = 4 ,
32
+ BufferUsePinnedHostMemory = 5 ,
33
+ UsePrimaryContext = 6 ,
34
+ DataLessPropKindSize = 7
35
35
};
36
36
37
37
// List of all properties with data IDs
38
38
enum PropWithDataKind {
39
39
BufferUseMutex = 0 ,
40
- BufferContextBound,
41
- ImageUseMutex,
42
- ImageContextBound,
43
- BufferMemChannel,
44
- PropWithDataKindSize
40
+ BufferContextBound = 1 ,
41
+ ImageUseMutex = 2 ,
42
+ ImageContextBound = 3 ,
43
+ BufferMemChannel = 4 ,
44
+ PropWithDataKindSize = 5
45
45
};
46
46
47
47
// Base class for dataless properties, needed to check that the type of an
You can’t perform that action at this time.
0 commit comments