blitFramebuffer method
void
blitFramebuffer()
The WebGL2RenderingContext.blitFramebuffer()
method of
the
WebGL 2 API
transfers a block of pixels
from the read framebuffer to the draw framebuffer. Read and draw
framebuffers are bound
using WebGLRenderingContext.bindFramebuffer.
Implementation
external void blitFramebuffer(
GLint srcX0,
GLint srcY0,
GLint srcX1,
GLint srcY1,
GLint dstX0,
GLint dstY0,
GLint dstX1,
GLint dstY1,
GLbitfield mask,
GLenum filter,
);