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>main
parent
1179edb49a
commit
362b5b0a88
|
@ -926,6 +926,11 @@ extern int drmGetDeviceFromDevId(dev_t dev_id, uint32_t flags, drmDevicePtr *dev
|
||||||
*/
|
*/
|
||||||
extern int drmGetNodeTypeFromDevId(dev_t devid);
|
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 drmDevicesEqual(drmDevicePtr a, drmDevicePtr b);
|
||||||
|
|
||||||
extern int drmSyncobjCreate(int fd, uint32_t flags, uint32_t *handle);
|
extern int drmSyncobjCreate(int fd, uint32_t flags, uint32_t *handle);
|
||||||
|
|
Loading…
Reference in New Issue