X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fegl%2Ffg_internal_egl.h;h=3a0ade91d083f5cc3aef1778bea8a6a5d0a09f91;hb=49df0cf2fb8f84ff03fcfc91f4e2b4c4e5774854;hp=1a4def8b8aa60588513f89b3a701a5e2c788abb4;hpb=7fbb15bc63c7937cab772bd942883e3811acbabf;p=freeglut diff --git a/src/egl/fg_internal_egl.h b/src/egl/fg_internal_egl.h index 1a4def8..3a0ade9 100644 --- a/src/egl/fg_internal_egl.h +++ b/src/egl/fg_internal_egl.h @@ -30,16 +30,11 @@ /* -- GLOBAL TYPE DEFINITIONS ---------------------------------------------- */ /* The structure used by display initialization in freeglut_init.c */ -typedef struct tagSFG_PlatformDisplay SFG_PlatformDisplay; struct tagSFG_Window; -struct tagSFG_PlatformDisplay +struct tagSFG_PlatformDisplayEGL { /* Used to initialize and deinitialize EGL */ - EGLDisplay eglDisplay; - EGLContext eglContext; - EGLConfig eglContextConfig; - EGLint eglContextFormat; - struct tagSFG_Window* single_window; + EGLDisplay Display; }; @@ -49,20 +44,10 @@ struct tagSFG_PlatformDisplay */ typedef EGLNativeWindowType SFG_WindowHandleType ; typedef EGLContext SFG_WindowContextType ; -typedef struct tagSFG_PlatformContext SFG_PlatformContext; -/* SFG_PlatformContext is used for SFG_Window.Window */ -struct tagSFG_PlatformContext +struct tagSFG_PlatformContextEGL { - EGLSurface eglSurface; -}; - - -/* 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 " " " " */ + EGLSurface Surface; + EGLConfig Config; }; #endif