X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fegl%2Ffg_internal_egl.h;h=f2015b9d7f9601aa50254044cf1214e4841aac4a;hb=44856885ba35db9526d24d140b84ce492f4871d2;hp=1a4def8b8aa60588513f89b3a701a5e2c788abb4;hpb=7fbb15bc63c7937cab772bd942883e3811acbabf;p=freeglut diff --git a/src/egl/fg_internal_egl.h b/src/egl/fg_internal_egl.h index 1a4def8..f2015b9 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,11 +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; + EGLSurface Surface; + EGLConfig Config; };