diff --git a/freeglut/freeglut/src/android/fg_internal_android.h b/freeglut/freeglut/src/android/fg_internal_android.h index e13b675..a0441b5 100644 --- a/freeglut/freeglut/src/android/fg_internal_android.h +++ b/freeglut/freeglut/src/android/fg_internal_android.h @@ -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 */ diff --git a/freeglut/freeglut/src/egl/fg_internal_egl.h b/freeglut/freeglut/src/egl/fg_internal_egl.h index f2015b9..3a0ade9 100644 --- a/freeglut/freeglut/src/egl/fg_internal_egl.h +++ b/freeglut/freeglut/src/egl/fg_internal_egl.h @@ -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