mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
test/libdrm_mock: add stub blob functions
This commit is contained in:
parent
0811ce855b
commit
8a9167f9fd
1 changed files with 13 additions and 0 deletions
|
@ -601,3 +601,16 @@ drmCloseBufferHandle(int fd, uint32_t handle)
|
|||
errno = EINVAL;
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
drmModePropertyBlobRes *
|
||||
drmModeGetPropertyBlob(int fd, uint32_t blob_id)
|
||||
{
|
||||
errno = EINVAL; /* TODO */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
drmModeFreePropertyBlob(drmModePropertyBlobRes *blob)
|
||||
{
|
||||
free(blob);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue