lwjgl2-arm64/src/java/org/lwjgl/opengl/ARBPointSprite.java
2004-02-09 23:37:28 +00:00

31 lines
771 B
Java

/**
* Created by zDimensions.
* User: spasi
* Date: 29 Éáí 2004
* Time: 1:54:00 ðì
*/
package org.lwjgl.opengl;
public class ARBPointSprite {
/*
* Accepted by the <cap> parameter of Enable, Disable, and IsEnabled, by
* the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv, and
* GetDoublev, and by the <target> parameter of TexEnvi, TexEnviv,
* TexEnvf, TexEnvfv, GetTexEnviv, and GetTexEnvfv:
*/
public static final int GL_POINT_SPRITE_ARB = 0x8861;
/*
* When the <target> parameter of TexEnvf, TexEnvfv, TexEnvi, TexEnviv,
* GetTexEnvfv, or GetTexEnviv is POINT_SPRITE_ARB, then the value of
* <pname> may be:
*/
public static final int GL_COORD_REPLACE_ARB = 0x8862;
static {
BufferChecks.putGetMap(GL_POINT_SPRITE_ARB, 1);
}
}