mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
LibWeb/WebGL: Implement bufferSubData
This commit is contained in:
parent
bf2b8c5f2b
commit
7a6b6627e9
Notes:
github-actions[bot]
2024-12-05 20:42:18 +00:00
Author: https://github.com/Lubrsi Commit: https://github.com/LadybirdBrowser/ladybird/commit/7a6b6627e91 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2791 Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/shannonbooth
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ interface mixin WebGLRenderingContextOverloads {
|
|||
undefined bufferData(GLenum target, GLsizeiptr size, GLenum usage);
|
||||
// FIXME: BufferSource is really a AllowSharedBufferSource
|
||||
undefined bufferData(GLenum target, BufferSource? data, GLenum usage);
|
||||
[FIXME] undefined bufferSubData(GLenum target, GLintptr offset, AllowSharedBufferSource data);
|
||||
undefined bufferSubData(GLenum target, GLintptr offset, BufferSource data);
|
||||
|
||||
[FIXME] undefined compressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, [AllowShared] ArrayBufferView data);
|
||||
[FIXME] undefined compressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, [AllowShared] ArrayBufferView data);
|
||||
|
|
Loading…
Reference in a new issue