├── EGL ├── .cproject ├── .project ├── .settings │ └── org.eclipse.cdt.managedbuilder.core.prefs ├── CMakeLists.txt ├── LICENCE.txt ├── README.txt ├── include │ ├── EGL │ │ ├── egl.h │ │ ├── eglctxinternals.h │ │ ├── eglext.h │ │ └── eglplatform.h │ └── KHR │ │ └── khrplatform.h └── src │ ├── egl.c │ ├── egl_common.cpp │ ├── egl_internal.h │ ├── egl_wayland_stub.cpp │ ├── egl_windows.cpp │ ├── egl_x11.cpp │ └── wglext.h └── README.md /EGL/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/.cproject -------------------------------------------------------------------------------- /EGL/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/.project -------------------------------------------------------------------------------- /EGL/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /EGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/CMakeLists.txt -------------------------------------------------------------------------------- /EGL/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/LICENCE.txt -------------------------------------------------------------------------------- /EGL/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/README.txt -------------------------------------------------------------------------------- /EGL/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/include/EGL/egl.h -------------------------------------------------------------------------------- /EGL/include/EGL/eglctxinternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/include/EGL/eglctxinternals.h -------------------------------------------------------------------------------- /EGL/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/include/EGL/eglext.h -------------------------------------------------------------------------------- /EGL/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /EGL/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /EGL/src/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl.c -------------------------------------------------------------------------------- /EGL/src/egl_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl_common.cpp -------------------------------------------------------------------------------- /EGL/src/egl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl_internal.h -------------------------------------------------------------------------------- /EGL/src/egl_wayland_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl_wayland_stub.cpp -------------------------------------------------------------------------------- /EGL/src/egl_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl_windows.cpp -------------------------------------------------------------------------------- /EGL/src/egl_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/egl_x11.cpp -------------------------------------------------------------------------------- /EGL/src/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/EGL/src/wglext.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McNopper/EGL/HEAD/README.md --------------------------------------------------------------------------------