Example usage for org.lwjgl.opengl GL30 glFlushMappedBufferRange

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

Introduction

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

Prototype

public static void glFlushMappedBufferRange(@NativeType("GLenum") int target,
        @NativeType("GLintptr") long offset, @NativeType("GLsizeiptr") long length) 

Source Link

Document

Indicates modifications to a range of a mapped buffer.

Usage

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

License:Apache License

@Override
public void glFlushMappedBufferRange(int target, int offset, int length) {
    GL30.glFlushMappedBufferRange(target, offset, length);
}

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

License:Apache License

public static void glFlushMappedBufferRange(int target, int offset, int length) {
    GL30.glFlushMappedBufferRange(target, offset, length);
}

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glFlushMappedBufferRange(int a, long b, long c) {
    GL30.glFlushMappedBufferRange(a, b, c);
}