diff options
Diffstat (limited to 'src/engine/client/gfx.cpp')
| -rw-r--r-- | src/engine/client/gfx.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/client/gfx.cpp b/src/engine/client/gfx.cpp index 5280ef5d..cf9e49fd 100644 --- a/src/engine/client/gfx.cpp +++ b/src/engine/client/gfx.cpp @@ -160,6 +160,11 @@ bool gfx_init(bool fullscreen) return true; } +int gfx_get_video_modes(video_mode *list, int maxcount) +{ + return context.getvideomodes((opengl::videomode *)list, maxcount); +} + int gfx_unload_texture(int index) { textures[index].tex.clear(); |