Example usage for org.lwjgl.opengl GL11 glPixelZoom

List of usage examples for org.lwjgl.opengl GL11 glPixelZoom

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glPixelZoom.

Prototype

public static native void glPixelZoom(@NativeType("GLfloat") float xfactor,
        @NativeType("GLfloat") float yfactor);

Source Link

Document

Controls the conversion of a group of fragments.

Usage

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

License:Open Source License

public static void glPixelZoom(float a, float b) {
    GL11.glPixelZoom(a, b);
}