diff options
author | Simon Ser <contact@emersion.fr> | 2024-04-11 12:11:30 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2024-04-11 12:11:30 +0200 |
commit | 362b5b0a886bdfbb92d2f78708ac7a67ee449b2d (patch) | |
tree | bc89e24b875a69b5cc07f0c02fb05948909ab653 | |
parent | 1179edb49a57415e5265cca4757c9c65587a464c (diff) |
xf86drm: document drmDevicesEqual()
I always need to double-check what the return value means when
using that function (since it's not a bool).
Signed-off-by: Simon Ser <contact@emersion.fr>
-rw-r--r-- | xf86drm.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -926,6 +926,11 @@ extern int drmGetDeviceFromDevId(dev_t dev_id, uint32_t flags, drmDevicePtr *dev */ extern int drmGetNodeTypeFromDevId(dev_t devid); +/** + * Check if two drmDevice pointers represent the same DRM device. + * + * Returns 1 if the devices are equal, 0 otherwise. + */ extern int drmDevicesEqual(drmDevicePtr a, drmDevicePtr b); extern int drmSyncobjCreate(int fd, uint32_t flags, uint32_t *handle); |