xref: /aosp_15_r20/external/mesa3d/src/freedreno/common/freedreno_uuid.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright © 2020 Igalia S.L.
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef __FREEDRENO_UUID_H__
7 #define __FREEDRENO_UUID_H__
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 struct fd_dev_id;
14 
15 void fd_get_driver_uuid(void *uuid);
16 void fd_get_device_uuid(void *uuid, const struct fd_dev_id *id);
17 
18 #ifdef __cplusplus
19 } /* end of extern "C" */
20 #endif
21 
22 #endif /* __FREEDRENO_UUID_H__ */
23