mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-23 01:57:21 +03:00
Symbian^3 port
This commit is contained in:
parent
77cdaaf97e
commit
3eb71f2cc5
106 changed files with 2098 additions and 745 deletions
7
vendor/librw/src/gl/rwgl3impl.h
vendored
7
vendor/librw/src/gl/rwgl3impl.h
vendored
|
|
@ -24,10 +24,15 @@ void im3DEnd(void);
|
|||
|
||||
struct DisplayMode
|
||||
{
|
||||
#ifdef __SYMBIAN32__
|
||||
uint32 width;
|
||||
uint32 height;
|
||||
#else
|
||||
#ifdef LIBRW_SDL2
|
||||
SDL_DisplayMode mode;
|
||||
#else
|
||||
GLFWvidmode mode;
|
||||
#endif
|
||||
#endif
|
||||
int32 depth;
|
||||
uint32 flags;
|
||||
|
|
@ -40,10 +45,12 @@ struct GlGlobals
|
|||
SDL_Window *window;
|
||||
SDL_GLContext glcontext;
|
||||
#else
|
||||
#ifndef __SYMBIAN32__
|
||||
GLFWwindow **pWindow;
|
||||
GLFWwindow *window;
|
||||
|
||||
GLFWmonitor *monitor;
|
||||
#endif
|
||||
int numMonitors;
|
||||
int currentMonitor;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue