summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2024-04-11 12:11:30 +0200
committerSimon Ser <contact@emersion.fr>2024-04-11 12:11:30 +0200
commit362b5b0a886bdfbb92d2f78708ac7a67ee449b2d (patch)
treebc89e24b875a69b5cc07f0c02fb05948909ab653
parent1179edb49a57415e5265cca4757c9c65587a464c (diff)
xf86drm: document drmDevicesEqual()HEADmain
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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/xf86drm.h b/xf86drm.h
index 2cb14156..6d91dfbd 100644
--- a/xf86drm.h
+++ b/xf86drm.h
@@ -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);