Add VS2017.ANGLE Project

This commit is contained in:
Mohamed Shazan
2019-06-06 15:03:03 +05:30
parent 7b4831f1b7
commit 272d9d58e3
15 changed files with 646 additions and 1 deletions

View File

@@ -2470,7 +2470,11 @@ static bool InitGraphicsDevice(int width, int height)
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
glfwWindowHint(GLFW_CONTEXT_CREATION_API, GLFW_NATIVE_CONTEXT_API); // Alternative: GLFW_EGL_CONTEXT_API (ANGLE)
#if defined(PLATFORM_DESKTOP)
glfwWindowHint(GLFW_CONTEXT_CREATION_API, GLFW_EGL_CONTEXT_API);
#else
glfwWindowHint(GLFW_CONTEXT_CREATION_API, GLFW_NATIVE_CONTEXT_API);
#endif
}
if (fullscreen)

Binary file not shown.

BIN
src/external/ANGLE/lib/x64/libEGL.dll vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x64/libEGL.lib vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x64/libGLESv2.dll vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x64/libGLESv2.lib vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
src/external/ANGLE/lib/x86/libEGL.dll vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x86/libEGL.lib vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x86/libGLESv2.dll vendored Normal file

Binary file not shown.

BIN
src/external/ANGLE/lib/x86/libGLESv2.lib vendored Normal file

Binary file not shown.