A conformant OpenGL ES implementation for Windows, Mac and Linux.
Перейти к файлу
Minmin Gong 967ed7b4a3 Add Minmin to CONTRIBUTORS.
Change-Id: I15598e42fa708861c0803acd6df4aa0b9d423ab5
Reviewed-on: https://chromium-review.googlesource.com/243950
Tested-by: Minmin Gong <mgong@microsoft.com>
Reviewed-by: Cooper Partin <coopp@microsoft.com>
Reviewed-by: Austin Kinross <aukinros@microsoft.com>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Shannon Woods <shannonwoods@chromium.org>
2015-01-28 18:57:44 +00:00
build Removed Samples and Tests project generation from Windows Store builds. 2015-01-21 19:20:25 +00:00
extensions Add GLSL/ESSL validator/translator support for GL_EXT_shader_framebuffer_fetch. 2014-12-03 16:32:39 +00:00
include Enable Windows Phone 8.1 project generation 2015-01-23 21:07:27 +00:00
samples Add more options to translator sample 2015-01-13 08:59:32 +00:00
src Use a stack for OutputHLSL info log output. 2015-01-28 14:50:02 +00:00
tests Update WebGL expected failures. 2015-01-28 14:47:49 +00:00
util Improve standards conformance of ANGLE's testing code. 2015-01-05 16:11:43 +00:00
.gitattributes Stop shader local variables from using invalid qualifiers. 2014-04-14 18:14:08 +00:00
.gitignore Remove pre-generated projects. 2014-11-19 19:10:38 +00:00
AUTHORS Add Minmin to CONTRIBUTORS. 2015-01-28 18:57:44 +00:00
BUILD.gn Fix Linux build, and update BUILD.gn. 2015-01-14 20:57:57 +00:00
CONTRIBUTORS Add Minmin to CONTRIBUTORS. 2015-01-28 18:57:44 +00:00
DEPS Add rapidjson library to DEPS. 2015-01-19 15:44:34 +00:00
LICENSE Update Copyright years on the LICENSE file 2013-01-11 04:12:37 +00:00
README.chromium Adds README.chromium for third-party integration. 2013-06-17 12:12:12 -04:00
README.md Update the README to match the one on the google code page. 2014-11-21 20:51:32 +00:00
codereview.settings Update codereview.settings to point to gerrit. 2014-02-25 21:03:08 +00:00
enumerate_files.py Update enumerate_files.py to ignore "hidden" files. 2014-03-03 19:45:26 +00:00
generate_winrt_projects.py Enable Windows Phone 8.1 project generation 2015-01-23 21:07:27 +00:00

README.md

#ANGLE The goal of ANGLE is to allow Windows users to seamlessly run WebGL and other OpenGL ES content by translating OpenGL ES API calls to DirectX 9 or DirectX 11 API calls.

ANGLE is a conformant implementation of the OpenGL ES 2.0 specification that is hardwareaccelerated via Direct3D. ANGLE v1.0.772 was certified compliant by passing the ES 2.0.3 conformance tests in October 2011. ANGLE also provides an implementation of the EGL 1.4 specification. Work on ANGLE's OpenGL ES 3.0 implementation is currently in progress, but should not be considered stable.

ANGLE is used as the default WebGL backend for both Google Chrome and Mozilla Firefox on Windows platforms. Chrome uses ANGLE for all graphics rendering on Windows, including the accelerated Canvas2D implementation and the Native Client sandbox environment.

Portions of the ANGLE shader compiler are used as a shader validator and translator by WebGL implementations across multiple platforms. It is used on Mac OS X, Linux, and in mobile variants of the browsers. Having one shader validator helps to ensure that a consistent set of GLSL ES shaders are accepted across browsers and platforms. The shader translator can be used to translate shaders to other shading languages, and to optionally apply shader modifications to work around bugs or quirks in the native graphics drivers. The translator targets Desktop GLSL, Direct3D HLSL, and even ESSL for native GLES2 platforms.

##Building For building instructions, visit the dev setup wiki.

##Contributing