Class NVGLUFramebuffer

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class NVGLUFramebuffer
    extends Struct
    A framebuffer object.

    Member documentation

    • fbo – the OpenGL framebuffer object handle
    • rbo – the OpenGL renderbuffer handle
    • texture – the OpenGL texture handle
    • image – the NanoVG image handle

    Layout

    struct NVGLUframebuffer {
        GLuint fbo;
        GLuint rbo;
        GLuint texture;
        int image;
    }