Move tagSFG_PlatformWindowState from EGL to Android

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1176 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-03-17 11:21:56 +00:00
parent 04e3e33ad7
commit 6a05cd0a10
2 changed files with 6 additions and 9 deletions

View File

@ -100,4 +100,10 @@ struct tagSFG_PlatformJoystick
int fd;
};
/* Window's state description. This structure should be kept portable. */
typedef struct tagSFG_PlatformWindowState SFG_PlatformWindowState;
struct tagSFG_PlatformWindowState
{
};
#endif /* FREEGLUT_INTERNAL_ANDROID_H */

View File

@ -50,13 +50,4 @@ struct tagSFG_PlatformContextEGL
EGLConfig Config;
};
/* Window's state description. This structure should be kept portable. */
typedef struct tagSFG_PlatformWindowState SFG_PlatformWindowState;
struct tagSFG_PlatformWindowState
{
int OldWidth; /* Window width from before a resize */
int OldHeight; /* " height " " " " */
};
#endif