Remove unused graphics subsystem functions

These functions were mostly related to being able to set true fullscreen
mode -- however, this has no place for our purposes, and these functions
were just sitting empty and unused, so they should be removed.

Besides, fullscreen mode only applies to the windows operating system.
This commit is contained in:
jp9000
2014-06-25 01:24:20 -07:00
parent f4e7a893c5
commit 8aa49cc9ad
6 changed files with 0 additions and 131 deletions

View File

@@ -1328,35 +1328,6 @@ void device_stencilop(device_t device, enum gs_stencil_side side,
fail, zfail, zpass);
}
void device_enable_fullscreen(device_t device, bool enable)
{
/* TODO */
}
int device_fullscreen_enabled(device_t device)
{
/* TODO */
return 0;
}
void device_setdisplaymode(device_t device,
const struct gs_display_mode *mode)
{
/* TODO */
}
void device_getdisplaymode(device_t device,
struct gs_display_mode *mode)
{
/* TODO */
}
void device_setcolorramp(device_t device, float gamma, float brightness,
float contrast)
{
/* TODO */
}
void device_setviewport(device_t device, int x, int y, int width,
int height)
{