Fix build for drivers.
This commit is contained in:
parent
a7497ab416
commit
714a4aa3f7
|
@ -1251,6 +1251,11 @@ const video_driver_t video_d3d9 = {
|
|||
d3d9_set_shader,
|
||||
d3d9_free,
|
||||
"d3d9",
|
||||
#ifdef HAVE_RGUI
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
#endif
|
||||
d3d9_set_rotation,
|
||||
d3d9_viewport_info,
|
||||
d3d9_read_viewport,
|
||||
|
|
|
@ -355,6 +355,12 @@ const video_driver_t video_sdl = {
|
|||
sdl_gfx_free,
|
||||
"sdl",
|
||||
|
||||
#ifdef HAVE_RGUI
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
#endif
|
||||
|
||||
NULL,
|
||||
sdl_gfx_viewport_info,
|
||||
};
|
||||
|
|
|
@ -789,6 +789,12 @@ const video_driver_t video_xvideo = {
|
|||
xv_free,
|
||||
"xvideo",
|
||||
|
||||
#ifdef HAVE_RGUI
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
#endif
|
||||
|
||||
NULL,
|
||||
xv_viewport_info,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue