All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.webgl.WebGLFramebuffer Maven / Gradle / Ivy

package js.web.webgl;

import org.teavm.jso.JSBody;

/**
 * Part of the WebGL API and represents a collection of buffers that serve as a rendering destination.
 */
public interface WebGLFramebuffer extends WebGLObject {
    @JSBody(script = "return WebGLFramebuffer.prototype")
    static WebGLFramebuffer prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new WebGLFramebuffer()")
    static WebGLFramebuffer create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy