mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-27 04:40:12 +01:00
Add drm_u64_t typedef on non-linux to fix libdrm build.
This commit is contained in:
parent
7b6cd95bb6
commit
584acab6d6
1 changed files with 2 additions and 0 deletions
|
|
@ -139,6 +139,8 @@ typedef unsigned long long drm_u64_t;
|
|||
|
||||
typedef unsigned int drm_handle_t;
|
||||
#else
|
||||
#include <sys/types.h>
|
||||
typedef u_int64_t drm_u64_t;
|
||||
typedef unsigned long drm_handle_t; /**< To mapped regions */
|
||||
#endif
|
||||
typedef unsigned int drm_context_t; /**< GLXContext handle */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue