aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/WebGL2RenderingContext.webidl
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2025-01-06 13:37:35 -0500
committerGitHub <noreply@github.com>2025-01-06 18:37:35 +0000
commitc43762faea97c24e6135f426fbde8224f261abf6 (patch)
tree94fdd8834416cc47a0d5676c9a50e56ea4b70d50 /components/script/dom/webidls/WebGL2RenderingContext.webidl
parent2575a0daf15a5bee3daed5190909c25c0382b85b (diff)
downloadservo-c43762faea97c24e6135f426fbde8224f261abf6.tar.gz
servo-c43762faea97c24e6135f426fbde8224f261abf6.zip
Add initial support for WebGL 2 BlitFramebuffer (#26389)
Add initial support for the WebGL2 BlitFramebuffer call. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Co-authored-by: Istvan <istvan.miklos@h-lab.eu>
Diffstat (limited to 'components/script/dom/webidls/WebGL2RenderingContext.webidl')
-rw-r--r--components/script/dom/webidls/WebGL2RenderingContext.webidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/WebGL2RenderingContext.webidl b/components/script/dom/webidls/WebGL2RenderingContext.webidl
index 3d5d086f554..72cedc30da6 100644
--- a/components/script/dom/webidls/WebGL2RenderingContext.webidl
+++ b/components/script/dom/webidls/WebGL2RenderingContext.webidl
@@ -295,8 +295,8 @@ interface mixin WebGL2RenderingContextBase
optional GLuint dstOffset = 0, optional GLuint length = 0);
/* Framebuffer objects */
- // void blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0,
- // GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
+ undefined blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0,
+ GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
undefined framebufferTextureLayer(GLenum target, GLenum attachment, WebGLTexture? texture, GLint level,
GLint layer);
undefined invalidateFramebuffer(GLenum target, sequence<GLenum> attachments);