mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
targets: Add stub implementations of xrt_gfx_provider_create_fd
This is needed by st/prober's default implementation of xrt_instance.
This commit is contained in:
parent
3b084b5c91
commit
fa0789343e
|
@ -51,3 +51,10 @@ main(int argc, const char **argv)
|
|||
}
|
||||
return cli_print_help(argc, argv);
|
||||
}
|
||||
|
||||
//! Needed to support st/prober.
|
||||
int
|
||||
xrt_gfx_provider_create_fd()
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
|
|
@ -57,3 +57,10 @@ main(int argc, char **argv)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
//! Needed to support st/prober.
|
||||
int
|
||||
xrt_gfx_provider_create_fd()
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue