Skip to content
The Official Khronos WebGL Repository
HTML JavaScript GLSL Python C XSLT Other
Branch: master
Clone or download

Latest commit

domenic Update for Web IDL extended attribute changes (#3049)
* Update for Web IDL extended attribute changes

[NoInterfaceObject] → [LegacyNoInterfaceObject]. This follows heycam/webidl#870.

This also replaces a couple instances of [NoInterfaceObject] with the interface mixin concept, as was previously done in 2df151b and a6f9909.
Latest commit 89cb55f Apr 22, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
conformance-suites Update for Web IDL extended attribute changes (#3049) Apr 21, 2020
doc/spec Deleted obsolete snapshot of WebGL spec, mainly because it contained … May 28, 2013
extensions Update for Web IDL extended attribute changes (#3049) Apr 21, 2020
other Add blocklist Chrome command line parameter (#2924) Sep 9, 2019
resources Updated Khronos group logos to the last available version (#2966) Nov 13, 2019
sdk Update for Web IDL extended attribute changes (#3049) Apr 21, 2020
specs Update for Web IDL extended attribute changes (#3049) Apr 21, 2020
tools Add support for iOS to WebDriver script Dec 11, 2019
.gitattributes Add smudge and clean filters to automatically set edit date. Mar 14, 2016
.gitconfig
.gitignore fixed gitignore to account for rejected folder Jan 24, 2015
.gitmodules Added WebGLDeveloperTools repo as git submodule under sdk/devtools/ . Jun 3, 2015
.travis.yml Fix Python 3 errors (#2865) Apr 24, 2019
CODE_OF_CONDUCT.md
CONTRIBUTING.md add CONTRIBUTING.md Apr 24, 2013
LICENSE.txt Add LICENSE.txt. (#2839) Mar 30, 2019
README.md Consistent use of HTTPS (#2632) Apr 7, 2018
codereview.settings Attempt to add a codereview.settings file to allow code reviews via R… Jan 3, 2012
expand_date Add standard copyright to the new scripts; add info about 'dater' to … Mar 15, 2016
index.php Expand page with additional links Jan 29, 2018
install-gitconfig.bat Batch file for installation of .gitconfig on Windows without bash.exe. Mar 29, 2016
install-gitconfig.sh Batch file for installation of .gitconfig on Windows without bash.exe. Mar 29, 2016
serve_localhost.py Explain that default bind is localhost (#2982) Dec 5, 2019

README.md

The Official Khronos WebGL Repository

This is the official home of the Khronos WebGL repository for the WebGL specifications and the WebGL conformance test suite.

Before adding a new test or editing an existing test please read these guidelines.

You can find live versions of the specifications at https://www.khronos.org/webgl/

The newest work in progress WebGL conformance test suite for the next version of the spec can be accessed at. https://www.khronos.org/registry/webgl/sdk/tests/webgl-conformance-tests.html

Official live versions of the conformance test suite can be found at https://www.khronos.org/registry/webgl/conformance-suites/

The WebGL Wiki can be found here https://www.khronos.org/webgl/wiki/

Cloning this repository

When cloning this repository please pass the --recursive flag to git:

git clone --recursive [URL]

This will properly install the WebGLDeveloperTools repository as a git submodule under sdk/devtools/.

The last edited date in several specifications is automatically updated via a smudge filter. To benefit from this you must issue the following commands in the root of your clone.

On Unix (Linux, Mac OS X, etc.) platforms and Windows using Git for Windows' Git Bash or Cygwin's bash terminal:

./install-gitconfig.sh
rm specs/latest/*/index.html
git checkout !$

On Windows with the Command Prompt (requires git.exe in a directory on your %PATH%):

install-gitconfig.bat
del specs/latest/1.0/index.html specs/latest/2.0/index.html 
git checkout specs/latest/1.0/index.html specs/latest/2.0/index.html 

The first command adds an [include] of the repo's .gitconfig to the local git config file.git/config in your clone of the repo. .gitconfig contains the config of the "dater" filter. The remaining commands force a new checkout of the index.html files to smudge them with the date. These two are unnecessary if you plan to edit these files. All are unecessary if you do not care about having the dates shown.

You can’t perform that action at this time.