xref: /aosp_15_r20/external/OpenCL-ICD-Loader/test/driver_stub/icd_structs.h (revision 1cddb830dba8aa7c1cc1039338e56b3b9fa24952)
1 #ifndef _ICD_STRUCTS_H_
2 #define _ICD_STRUCTS_H_
3 
4 typedef struct CLIicdDispatchTable_st  CLIicdDispatchTable;
5 typedef struct CLIplatform_st CLIplatform;
6 
7 struct CLIicdDispatchTable_st
8 {
9     void *entries[256];
10     int entryCount;
11 };
12 
13 struct CLIplatform_st
14 {
15     CLIicdDispatchTable* dispatch;
16 };
17 
18 #endif /* _ICD_STRUCTS_H_ */
19