mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 20:45:14 +00:00
LibWeb/WebGL2: Implement texSubImage2D with ArrayBufferView
This commit is contained in:
parent
f4f3e446a2
commit
bc9ae79a47
Notes:
github-actions[bot]
2024-12-14 08:10:20 +00:00
Author: https://github.com/Lubrsi Commit: https://github.com/LadybirdBrowser/ladybird/commit/bc9ae79a474 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2905
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ interface mixin WebGL2RenderingContextOverloads {
|
|||
// May throw DOMException
|
||||
undefined texImage2D(GLenum target, GLint level, GLint internalformat, GLenum format, GLenum type, TexImageSource source);
|
||||
|
||||
[FIXME] undefined texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, [AllowShared] ArrayBufferView? pixels);
|
||||
undefined texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, [AllowShared] ArrayBufferView? pixels);
|
||||
|
||||
// May throw DOMException
|
||||
[FIXME] undefined texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLenum format, GLenum type, TexImageSource source);
|
||||
|
|
Loading…
Add table
Reference in a new issue