mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
I noticed that those links' fragments are all "off-by-one". This is due to https://github.com/KhronosGroup/WebGL/pull/3762, that added a section at the top of the specification. This patch fixes those links. Testing: This is a comment-only change, so not covered by any automated test. I manually navigated to a random subset of those links and checked they do take to the correct section. Signed-off-by: Simon Martin <simon@nasilyan.com>
12 lines
443 B
Plaintext
12 lines
443 B
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
//
|
|
// WebGL IDL definitions scraped from the Khronos specification:
|
|
// https://www.khronos.org/registry/webgl/specs/latest/2.0/#4.7.15
|
|
//
|
|
|
|
[Exposed=(Window), Pref="dom_webgl2_enabled"]
|
|
interface WebGLTransformFeedback : WebGLObject {
|
|
};
|