From cdeae7881c68d9501ed28e7b839b31771a09d22d Mon Sep 17 00:00:00 2001 From: Sylvain Beucler Date: Sat, 17 Mar 2012 11:21:56 +0000 Subject: [PATCH] Move tagSFG_PlatformWindowState from EGL to Android git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1176 7f0cb862-5218-0410-a997-914c9d46530a --- src/android/fg_internal_android.h | 6 ++++++ src/egl/fg_internal_egl.h | 9 --------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/android/fg_internal_android.h b/src/android/fg_internal_android.h index e13b675..a0441b5 100644 --- a/src/android/fg_internal_android.h +++ b/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/src/egl/fg_internal_egl.h b/src/egl/fg_internal_egl.h index f2015b9..3a0ade9 100644 --- a/src/egl/fg_internal_egl.h +++ b/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 -- 1.7.10.4