2004-01-30 21:30:19 +01:00
|
|
|
|
/**
|
|
|
|
|
|
* Created by zDimensions.
|
|
|
|
|
|
* User: spasi
|
|
|
|
|
|
* Date: 29 <EFBFBD><EFBFBD><EFBFBD> 2004
|
|
|
|
|
|
* Time: 1:54:00 <EFBFBD><EFBFBD>
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2004-02-08 21:41:00 +01:00
|
|
|
|
package org.lwjgl.opengl;
|
2004-01-30 21:30:19 +01:00
|
|
|
|
|
2004-02-10 00:37:28 +01:00
|
|
|
|
public class ARBPointSprite {
|
2004-01-30 21:30:19 +01:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* 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:
|
|
|
|
|
|
*/
|
2004-02-10 00:37:28 +01:00
|
|
|
|
public static final int GL_POINT_SPRITE_ARB = 0x8861;
|
2004-01-30 21:30:19 +01:00
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
* When the <target> parameter of TexEnvf, TexEnvfv, TexEnvi, TexEnviv,
|
|
|
|
|
|
* GetTexEnvfv, or GetTexEnviv is POINT_SPRITE_ARB, then the value of
|
|
|
|
|
|
* <pname> may be:
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2004-02-10 00:37:28 +01:00
|
|
|
|
public static final int GL_COORD_REPLACE_ARB = 0x8862;
|
2004-02-15 20:41:51 +01:00
|
|
|
|
|
2004-01-30 21:30:19 +01:00
|
|
|
|
}
|