mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb/WebGL: Implement copyTexSubImage2D
Used by d3wasm for effects that use the current framebuffer as the texture, such as screen wipes.
This commit is contained in:
parent
46f986bc2b
commit
f4649aa40d
Notes:
github-actions[bot]
2025-01-28 18:02:34 +00:00
Author: https://github.com/Lubrsi
Commit: f4649aa40d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3384
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ interface mixin WebGLRenderingContextBase {
|
|||
undefined compileShader(WebGLShader shader);
|
||||
|
||||
undefined copyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
|
||||
[FIXME] undefined copyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
|
||||
undefined copyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
|
||||
|
||||
WebGLBuffer? createBuffer();
|
||||
WebGLFramebuffer? createFramebuffer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue