List of usage examples for org.lwjgl.opengl GL30 glRenderbufferStorageMultisample
public static void glRenderbufferStorageMultisample(@NativeType("GLenum") int target, @NativeType("GLsizei") int samples, @NativeType("GLenum") int internalformat, @NativeType("GLsizei") int width, @NativeType("GLsizei") int height)
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); }