Example usage for org.lwjgl.opengl GL30 glRenderbufferStorageMultisample

List of usage examples for org.lwjgl.opengl GL30 glRenderbufferStorageMultisample

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glRenderbufferStorageMultisample.

Prototype

public static void glRenderbufferStorageMultisample(@NativeType("GLenum") int target,
        @NativeType("GLsizei") int samples, @NativeType("GLenum") int internalformat,
        @NativeType("GLsizei") int width, @NativeType("GLsizei") int height) 

Source Link

Document

Establishes data storage, format, dimensions and sample count of a renderbuffer object's image.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glRenderbufferStorageMultisample(int target, int samples, int internalformat, int width,
        int height) {
    GL30.glRenderbufferStorageMultisample(target, samples, internalformat, width, height);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glRenderbufferStorageMultisample(int target, int samples, int internalformat, int width,
        int height) {
    GL30.glRenderbufferStorageMultisample(target, samples, internalformat, width, height);
}

From source file:processing.lwjgl.PGL.java

License:Open Source License

public void renderbufferStorageMultisample(int target, int samples, int format, int width, int height) {
    GL30.glRenderbufferStorageMultisample(target, samples, format, width, height);
}

From source file:processing.opengl.PLWJGL.java

License:Open Source License

@Override
public void renderbufferStorageMultisample(int target, int samples, int format, int width, int height) {
    GL30.glRenderbufferStorageMultisample(target, samples, format, width, height);
}