Merge pull request #872 from msmshazan/ANGLE-fix

Added VS2017.ANGLE Project
This commit is contained in:
Ray
2019-06-06 11:51:43 +02:00
committed by GitHub
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.