Package org.lwjgl.opengles
Class GLES20
- java.lang.Object
-
- org.lwjgl.opengles.GLES20
-
public class GLES20 extends java.lang.Object
The core OpenGL ES 2.0 functionality.
-
-
Field Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static void
glActiveTexture(int texture)
static void
glAttachShader(int program, int shader)
static void
glBindAttribLocation(int program, int index, java.nio.ByteBuffer name)
static void
glBindAttribLocation(int program, int index, java.lang.CharSequence name)
static void
glBindBuffer(int target, int buffer)
static void
glBindFramebuffer(int target, int framebuffer)
static void
glBindRenderbuffer(int target, int renderbuffer)
static void
glBindTexture(int target, int texture)
static void
glBlendColor(float red, float green, float blue, float alpha)
static void
glBlendEquation(int mode)
static void
glBlendEquationSeparate(int modeRGB, int modeAlpha)
static void
glBlendFunc(int sfactor, int dfactor)
static void
glBlendFuncSeparate(int sfactorRGB, int dfactorRGB, int sfactorAlpha, int dfactorAlpha)
static void
glBufferData(int target, java.nio.ByteBuffer data, int usage)
ByteBuffer version of:BufferData
static void
glBufferData(int target, float[] data, int usage)
float[] version of:BufferData
static void
glBufferData(int target, java.nio.FloatBuffer data, int usage)
FloatBuffer version of:BufferData
static void
glBufferData(int target, int[] data, int usage)
int[] version of:BufferData
static void
glBufferData(int target, java.nio.IntBuffer data, int usage)
IntBuffer version of:BufferData
static void
glBufferData(int target, long size, int usage)
static void
glBufferData(int target, short[] data, int usage)
short[] version of:BufferData
static void
glBufferData(int target, java.nio.ShortBuffer data, int usage)
ShortBuffer version of:BufferData
static void
glBufferSubData(int target, long offset, java.nio.ByteBuffer data)
static void
glBufferSubData(int target, long offset, float[] data)
float[] version of:BufferSubData
static void
glBufferSubData(int target, long offset, java.nio.FloatBuffer data)
FloatBuffer version of:BufferSubData
static void
glBufferSubData(int target, long offset, int[] data)
int[] version of:BufferSubData
static void
glBufferSubData(int target, long offset, java.nio.IntBuffer data)
IntBuffer version of:BufferSubData
static void
glBufferSubData(int target, long offset, short[] data)
short[] version of:BufferSubData
static void
glBufferSubData(int target, long offset, java.nio.ShortBuffer data)
ShortBuffer version of:BufferSubData
static int
glCheckFramebufferStatus(int target)
static void
glClear(int mask)
static void
glClearColor(float red, float green, float blue, float alpha)
static void
glClearDepthf(float d)
static void
glClearStencil(int s)
static void
glColorMask(boolean red, boolean green, boolean blue, boolean alpha)
static void
glCompileShader(int shader)
static void
glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, java.nio.ByteBuffer data)
static void
glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, long data)
static void
glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, java.nio.ByteBuffer data)
static void
glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, long data)
static void
glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border)
static void
glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height)
static int
glCreateProgram()
static int
glCreateShader(int type)
static void
glCullFace(int mode)
static void
glDeleteBuffers(int buffer)
static void
glDeleteBuffers(int[] buffers)
Array version of:DeleteBuffers
static void
glDeleteBuffers(java.nio.IntBuffer buffers)
static void
glDeleteFramebuffers(int framebuffer)
static void
glDeleteFramebuffers(int[] framebuffers)
Array version of:DeleteFramebuffers
static void
glDeleteFramebuffers(java.nio.IntBuffer framebuffers)
static void
glDeleteProgram(int program)
static void
glDeleteRenderbuffers(int renderbuffer)
static void
glDeleteRenderbuffers(int[] renderbuffers)
Array version of:DeleteRenderbuffers
static void
glDeleteRenderbuffers(java.nio.IntBuffer renderbuffers)
static void
glDeleteShader(int shader)
static void
glDeleteTextures(int texture)
static void
glDeleteTextures(int[] textures)
Array version of:DeleteTextures
static void
glDeleteTextures(java.nio.IntBuffer textures)
static void
glDepthFunc(int func)
static void
glDepthMask(boolean flag)
static void
glDepthRangef(float n, float f)
static void
glDetachShader(int program, int shader)
static void
glDisable(int cap)
static void
glDisableVertexAttribArray(int index)
static void
glDrawArrays(int mode, int first, int count)
static void
glDrawElements(int mode, java.nio.ByteBuffer indices)
static void
glDrawElements(int mode, java.nio.IntBuffer indices)
static void
glDrawElements(int mode, int type, java.nio.ByteBuffer indices)
static void
glDrawElements(int mode, int count, int type, long indices)
static void
glDrawElements(int mode, java.nio.ShortBuffer indices)
static void
glEnable(int cap)
static void
glEnableVertexAttribArray(int index)
static void
glFinish()
static void
glFlush()
static void
glFramebufferRenderbuffer(int target, int attachment, int renderbuffertarget, int renderbuffer)
static void
glFramebufferTexture2D(int target, int attachment, int textarget, int texture, int level)
static void
glFrontFace(int mode)
static int
glGenBuffers()
static void
glGenBuffers(int[] buffers)
Array version of:GenBuffers
static void
glGenBuffers(java.nio.IntBuffer buffers)
static void
glGenerateMipmap(int target)
static int
glGenFramebuffers()
static void
glGenFramebuffers(int[] framebuffers)
Array version of:GenFramebuffers
static void
glGenFramebuffers(java.nio.IntBuffer framebuffers)
static int
glGenRenderbuffers()
static void
glGenRenderbuffers(int[] renderbuffers)
Array version of:GenRenderbuffers
static void
glGenRenderbuffers(java.nio.IntBuffer renderbuffers)
static int
glGenTextures()
static void
glGenTextures(int[] textures)
Array version of:GenTextures
static void
glGenTextures(java.nio.IntBuffer textures)
static void
glGetActiveAttrib(int program, int index, int[] length, int[] size, int[] type, java.nio.ByteBuffer name)
Array version of:GetActiveAttrib
static java.lang.String
glGetActiveAttrib(int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type)
static void
glGetActiveAttrib(int program, int index, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name)
static java.lang.String
glGetActiveAttrib(int program, int index, int bufSize, java.nio.IntBuffer size, java.nio.IntBuffer type)
static void
glGetActiveUniform(int program, int index, int[] length, int[] size, int[] type, java.nio.ByteBuffer name)
Array version of:GetActiveUniform
static java.lang.String
glGetActiveUniform(int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type)
static void
glGetActiveUniform(int program, int index, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name)
static java.lang.String
glGetActiveUniform(int program, int index, int bufSize, java.nio.IntBuffer size, java.nio.IntBuffer type)
static void
glGetAttachedShaders(int program, int[] count, int[] shaders)
Array version of:GetAttachedShaders
static void
glGetAttachedShaders(int program, java.nio.IntBuffer count, java.nio.IntBuffer shaders)
static int
glGetAttribLocation(int program, java.nio.ByteBuffer name)
static int
glGetAttribLocation(int program, java.lang.CharSequence name)
static byte
glGetBoolean(int pname)
static void
glGetBooleanv(int pname, java.nio.ByteBuffer data)
static int
glGetBufferParameteri(int target, int pname)
static void
glGetBufferParameteriv(int target, int pname, int[] params)
Array version of:GetBufferParameteriv
static void
glGetBufferParameteriv(int target, int pname, java.nio.IntBuffer params)
static int
glGetError()
static float
glGetFloat(int pname)
static void
glGetFloatv(int pname, float[] data)
Array version of:GetFloatv
static void
glGetFloatv(int pname, java.nio.FloatBuffer data)
static int
glGetFramebufferAttachmentParameteri(int target, int attachment, int pname)
static void
glGetFramebufferAttachmentParameteriv(int target, int attachment, int pname, int[] params)
Array version of:GetFramebufferAttachmentParameteriv
static void
glGetFramebufferAttachmentParameteriv(int target, int attachment, int pname, java.nio.IntBuffer params)
static int
glGetInteger(int pname)
static void
glGetIntegerv(int pname, int[] data)
Array version of:GetIntegerv
static void
glGetIntegerv(int pname, java.nio.IntBuffer data)
static int
glGetProgrami(int program, int pname)
static java.lang.String
glGetProgramInfoLog(int program)
static java.lang.String
glGetProgramInfoLog(int program, int bufSize)
static void
glGetProgramInfoLog(int program, int[] length, java.nio.ByteBuffer infoLog)
Array version of:GetProgramInfoLog
static void
glGetProgramInfoLog(int program, java.nio.IntBuffer length, java.nio.ByteBuffer infoLog)
static void
glGetProgramiv(int program, int pname, int[] params)
Array version of:GetProgramiv
static void
glGetProgramiv(int program, int pname, java.nio.IntBuffer params)
static int
glGetRenderbufferParameteri(int target, int pname)
static void
glGetRenderbufferParameteriv(int target, int pname, int[] params)
Array version of:GetRenderbufferParameteriv
static void
glGetRenderbufferParameteriv(int target, int pname, java.nio.IntBuffer params)
static int
glGetShaderi(int shader, int pname)
static java.lang.String
glGetShaderInfoLog(int shader)
static java.lang.String
glGetShaderInfoLog(int shader, int bufSize)
static void
glGetShaderInfoLog(int shader, int[] length, java.nio.ByteBuffer infoLog)
Array version of:GetShaderInfoLog
static void
glGetShaderInfoLog(int shader, java.nio.IntBuffer length, java.nio.ByteBuffer infoLog)
static void
glGetShaderiv(int shader, int pname, int[] params)
Array version of:GetShaderiv
static void
glGetShaderiv(int shader, int pname, java.nio.IntBuffer params)
static void
glGetShaderPrecisionFormat(int shadertype, int precisiontype, int[] range, int[] precision)
Array version of:GetShaderPrecisionFormat
static void
glGetShaderPrecisionFormat(int shadertype, int precisiontype, java.nio.IntBuffer range, java.nio.IntBuffer precision)
static java.lang.String
glGetShaderSource(int shader)
static java.lang.String
glGetShaderSource(int shader, int bufSize)
static void
glGetShaderSource(int shader, int[] length, java.nio.ByteBuffer source)
Array version of:GetShaderSource
static void
glGetShaderSource(int shader, java.nio.IntBuffer length, java.nio.ByteBuffer source)
static java.lang.String
glGetString(int name)
static float
glGetTexParameterf(int target, int pname)
static void
glGetTexParameterfv(int target, int pname, float[] params)
Array version of:GetTexParameterfv
static void
glGetTexParameterfv(int target, int pname, java.nio.FloatBuffer params)
static int
glGetTexParameteri(int target, int pname)
static void
glGetTexParameteriv(int target, int pname, int[] params)
Array version of:GetTexParameteriv
static void
glGetTexParameteriv(int target, int pname, java.nio.IntBuffer params)
static float
glGetUniformf(int program, int location)
static void
glGetUniformfv(int program, int location, float[] params)
Array version of:GetUniformfv
static void
glGetUniformfv(int program, int location, java.nio.FloatBuffer params)
static int
glGetUniformi(int program, int location)
static void
glGetUniformiv(int program, int location, int[] params)
Array version of:GetUniformiv
static void
glGetUniformiv(int program, int location, java.nio.IntBuffer params)
static int
glGetUniformLocation(int program, java.nio.ByteBuffer name)
static int
glGetUniformLocation(int program, java.lang.CharSequence name)
static void
glGetVertexAttribfv(int index, int pname, float[] params)
Array version of:GetVertexAttribfv
static void
glGetVertexAttribfv(int index, int pname, java.nio.FloatBuffer params)
static void
glGetVertexAttribiv(int index, int pname, int[] params)
Array version of:GetVertexAttribiv
static void
glGetVertexAttribiv(int index, int pname, java.nio.IntBuffer params)
static long
glGetVertexAttribPointer(int index, int pname)
static void
glGetVertexAttribPointerv(int index, int pname, PointerBuffer pointer)
static void
glHint(int target, int mode)
static boolean
glIsBuffer(int buffer)
static boolean
glIsEnabled(int cap)
static boolean
glIsFramebuffer(int framebuffer)
static boolean
glIsProgram(int program)
static boolean
glIsRenderbuffer(int renderbuffer)
static boolean
glIsShader(int shader)
static boolean
glIsTexture(int texture)
static void
glLineWidth(float width)
static void
glLinkProgram(int program)
static void
glPixelStorei(int pname, int param)
static void
glPolygonOffset(float factor, float units)
static void
glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.ByteBuffer pixels)
static void
glReadPixels(int x, int y, int width, int height, int format, int type, float[] pixels)
float[] version of:ReadPixels
static void
glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:ReadPixels
static void
glReadPixels(int x, int y, int width, int height, int format, int type, int[] pixels)
int[] version of:ReadPixels
static void
glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:ReadPixels
static void
glReadPixels(int x, int y, int width, int height, int format, int type, long pixels)
static void
glReadPixels(int x, int y, int width, int height, int format, int type, short[] pixels)
short[] version of:ReadPixels
static void
glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:ReadPixels
static void
glReleaseShaderCompiler()
static void
glRenderbufferStorage(int target, int internalformat, int width, int height)
static void
glSampleCoverage(float value, boolean invert)
static void
glScissor(int x, int y, int width, int height)
static void
glShaderBinary(int[] shaders, int binaryformat, java.nio.ByteBuffer binary)
Array version of:ShaderBinary
static void
glShaderBinary(java.nio.IntBuffer shaders, int binaryformat, java.nio.ByteBuffer binary)
static void
glShaderSource(int shader, java.lang.CharSequence... string)
static void
glShaderSource(int shader, java.lang.CharSequence string)
static void
glShaderSource(int shader, PointerBuffer string, int[] length)
Array version of:ShaderSource
static void
glShaderSource(int shader, PointerBuffer string, java.nio.IntBuffer length)
static void
glStencilFunc(int func, int ref, int mask)
static void
glStencilFuncSeparate(int face, int func, int ref, int mask)
static void
glStencilMask(int mask)
static void
glStencilMaskSeparate(int face, int mask)
static void
glStencilOp(int fail, int zfail, int zpass)
static void
glStencilOpSeparate(int face, int sfail, int dpfail, int dppass)
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.ByteBuffer pixels)
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, float[] pixels)
float[] version of:TexImage2D
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:TexImage2D
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, int[] pixels)
int[] version of:TexImage2D
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:TexImage2D
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, long pixels)
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, short[] pixels)
short[] version of:TexImage2D
static void
glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:TexImage2D
static void
glTexParameterf(int target, int pname, float param)
static void
glTexParameterfv(int target, int pname, float[] params)
Array version of:TexParameterfv
static void
glTexParameterfv(int target, int pname, java.nio.FloatBuffer params)
static void
glTexParameteri(int target, int pname, int param)
static void
glTexParameteriv(int target, int pname, int[] params)
Array version of:TexParameteriv
static void
glTexParameteriv(int target, int pname, java.nio.IntBuffer params)
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.ByteBuffer pixels)
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, float[] pixels)
float[] version of:TexSubImage2D
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:TexSubImage2D
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, int[] pixels)
int[] version of:TexSubImage2D
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:TexSubImage2D
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, long pixels)
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, short[] pixels)
short[] version of:TexSubImage2D
static void
glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:TexSubImage2D
static void
glUniform1f(int location, float v0)
static void
glUniform1fv(int location, float[] value)
Array version of:Uniform1fv
static void
glUniform1fv(int location, java.nio.FloatBuffer value)
static void
glUniform1i(int location, int v0)
static void
glUniform1iv(int location, int[] value)
Array version of:Uniform1iv
static void
glUniform1iv(int location, java.nio.IntBuffer value)
static void
glUniform2f(int location, float v0, float v1)
static void
glUniform2fv(int location, float[] value)
Array version of:Uniform2fv
static void
glUniform2fv(int location, java.nio.FloatBuffer value)
static void
glUniform2i(int location, int v0, int v1)
static void
glUniform2iv(int location, int[] value)
Array version of:Uniform2iv
static void
glUniform2iv(int location, java.nio.IntBuffer value)
static void
glUniform3f(int location, float v0, float v1, float v2)
static void
glUniform3fv(int location, float[] value)
Array version of:Uniform3fv
static void
glUniform3fv(int location, java.nio.FloatBuffer value)
static void
glUniform3i(int location, int v0, int v1, int v2)
static void
glUniform3iv(int location, int[] value)
Array version of:Uniform3iv
static void
glUniform3iv(int location, java.nio.IntBuffer value)
static void
glUniform4f(int location, float v0, float v1, float v2, float v3)
static void
glUniform4fv(int location, float[] value)
Array version of:Uniform4fv
static void
glUniform4fv(int location, java.nio.FloatBuffer value)
static void
glUniform4i(int location, int v0, int v1, int v2, int v3)
static void
glUniform4iv(int location, int[] value)
Array version of:Uniform4iv
static void
glUniform4iv(int location, java.nio.IntBuffer value)
static void
glUniformMatrix2fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix2fv
static void
glUniformMatrix2fv(int location, boolean transpose, java.nio.FloatBuffer value)
static void
glUniformMatrix3fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix3fv
static void
glUniformMatrix3fv(int location, boolean transpose, java.nio.FloatBuffer value)
static void
glUniformMatrix4fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix4fv
static void
glUniformMatrix4fv(int location, boolean transpose, java.nio.FloatBuffer value)
static void
glUseProgram(int program)
static void
glValidateProgram(int program)
static void
glVertexAttrib1f(int index, float x)
static void
glVertexAttrib1fv(int index, float[] v)
Array version of:VertexAttrib1fv
static void
glVertexAttrib1fv(int index, java.nio.FloatBuffer v)
static void
glVertexAttrib2f(int index, float x, float y)
static void
glVertexAttrib2fv(int index, float[] v)
Array version of:VertexAttrib2fv
static void
glVertexAttrib2fv(int index, java.nio.FloatBuffer v)
static void
glVertexAttrib3f(int index, float x, float y, float z)
static void
glVertexAttrib3fv(int index, float[] v)
Array version of:VertexAttrib3fv
static void
glVertexAttrib3fv(int index, java.nio.FloatBuffer v)
static void
glVertexAttrib4f(int index, float x, float y, float z, float w)
static void
glVertexAttrib4fv(int index, float[] v)
Array version of:VertexAttrib4fv
static void
glVertexAttrib4fv(int index, java.nio.FloatBuffer v)
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.ByteBuffer pointer)
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, float[] pointer)
float[] version of:VertexAttribPointer
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.FloatBuffer pointer)
FloatBuffer version of:VertexAttribPointer
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, int[] pointer)
int[] version of:VertexAttribPointer
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.IntBuffer pointer)
IntBuffer version of:VertexAttribPointer
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, long pointer)
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, short[] pointer)
short[] version of:VertexAttribPointer
static void
glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.ShortBuffer pointer)
ShortBuffer version of:VertexAttribPointer
static void
glViewport(int x, int y, int width, int height)
-
-
-
Field Detail
-
GL_DEPTH_BUFFER_BIT
public static final int GL_DEPTH_BUFFER_BIT
- See Also:
- Constant Field Values
-
GL_STENCIL_BUFFER_BIT
public static final int GL_STENCIL_BUFFER_BIT
- See Also:
- Constant Field Values
-
GL_COLOR_BUFFER_BIT
public static final int GL_COLOR_BUFFER_BIT
- See Also:
- Constant Field Values
-
GL_FALSE
public static final int GL_FALSE
- See Also:
- Constant Field Values
-
GL_TRUE
public static final int GL_TRUE
- See Also:
- Constant Field Values
-
GL_POINTS
public static final int GL_POINTS
- See Also:
- Constant Field Values
-
GL_LINES
public static final int GL_LINES
- See Also:
- Constant Field Values
-
GL_LINE_LOOP
public static final int GL_LINE_LOOP
- See Also:
- Constant Field Values
-
GL_LINE_STRIP
public static final int GL_LINE_STRIP
- See Also:
- Constant Field Values
-
GL_TRIANGLES
public static final int GL_TRIANGLES
- See Also:
- Constant Field Values
-
GL_TRIANGLE_STRIP
public static final int GL_TRIANGLE_STRIP
- See Also:
- Constant Field Values
-
GL_TRIANGLE_FAN
public static final int GL_TRIANGLE_FAN
- See Also:
- Constant Field Values
-
GL_ZERO
public static final int GL_ZERO
- See Also:
- Constant Field Values
-
GL_ONE
public static final int GL_ONE
- See Also:
- Constant Field Values
-
GL_SRC_COLOR
public static final int GL_SRC_COLOR
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_SRC_COLOR
public static final int GL_ONE_MINUS_SRC_COLOR
- See Also:
- Constant Field Values
-
GL_SRC_ALPHA
public static final int GL_SRC_ALPHA
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_SRC_ALPHA
public static final int GL_ONE_MINUS_SRC_ALPHA
- See Also:
- Constant Field Values
-
GL_DST_ALPHA
public static final int GL_DST_ALPHA
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_DST_ALPHA
public static final int GL_ONE_MINUS_DST_ALPHA
- See Also:
- Constant Field Values
-
GL_DST_COLOR
public static final int GL_DST_COLOR
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_DST_COLOR
public static final int GL_ONE_MINUS_DST_COLOR
- See Also:
- Constant Field Values
-
GL_SRC_ALPHA_SATURATE
public static final int GL_SRC_ALPHA_SATURATE
- See Also:
- Constant Field Values
-
GL_FUNC_ADD
public static final int GL_FUNC_ADD
- See Also:
- Constant Field Values
-
GL_BLEND_EQUATION
public static final int GL_BLEND_EQUATION
- See Also:
- Constant Field Values
-
GL_BLEND_EQUATION_RGB
public static final int GL_BLEND_EQUATION_RGB
- See Also:
- Constant Field Values
-
GL_BLEND_EQUATION_ALPHA
public static final int GL_BLEND_EQUATION_ALPHA
- See Also:
- Constant Field Values
-
GL_FUNC_SUBTRACT
public static final int GL_FUNC_SUBTRACT
- See Also:
- Constant Field Values
-
GL_FUNC_REVERSE_SUBTRACT
public static final int GL_FUNC_REVERSE_SUBTRACT
- See Also:
- Constant Field Values
-
GL_BLEND_DST_RGB
public static final int GL_BLEND_DST_RGB
- See Also:
- Constant Field Values
-
GL_BLEND_SRC_RGB
public static final int GL_BLEND_SRC_RGB
- See Also:
- Constant Field Values
-
GL_BLEND_DST_ALPHA
public static final int GL_BLEND_DST_ALPHA
- See Also:
- Constant Field Values
-
GL_BLEND_SRC_ALPHA
public static final int GL_BLEND_SRC_ALPHA
- See Also:
- Constant Field Values
-
GL_CONSTANT_COLOR
public static final int GL_CONSTANT_COLOR
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_CONSTANT_COLOR
public static final int GL_ONE_MINUS_CONSTANT_COLOR
- See Also:
- Constant Field Values
-
GL_CONSTANT_ALPHA
public static final int GL_CONSTANT_ALPHA
- See Also:
- Constant Field Values
-
GL_ONE_MINUS_CONSTANT_ALPHA
public static final int GL_ONE_MINUS_CONSTANT_ALPHA
- See Also:
- Constant Field Values
-
GL_BLEND_COLOR
public static final int GL_BLEND_COLOR
- See Also:
- Constant Field Values
-
GL_ARRAY_BUFFER
public static final int GL_ARRAY_BUFFER
- See Also:
- Constant Field Values
-
GL_ELEMENT_ARRAY_BUFFER
public static final int GL_ELEMENT_ARRAY_BUFFER
- See Also:
- Constant Field Values
-
GL_ARRAY_BUFFER_BINDING
public static final int GL_ARRAY_BUFFER_BINDING
- See Also:
- Constant Field Values
-
GL_ELEMENT_ARRAY_BUFFER_BINDING
public static final int GL_ELEMENT_ARRAY_BUFFER_BINDING
- See Also:
- Constant Field Values
-
GL_STREAM_DRAW
public static final int GL_STREAM_DRAW
- See Also:
- Constant Field Values
-
GL_STATIC_DRAW
public static final int GL_STATIC_DRAW
- See Also:
- Constant Field Values
-
GL_DYNAMIC_DRAW
public static final int GL_DYNAMIC_DRAW
- See Also:
- Constant Field Values
-
GL_BUFFER_SIZE
public static final int GL_BUFFER_SIZE
- See Also:
- Constant Field Values
-
GL_BUFFER_USAGE
public static final int GL_BUFFER_USAGE
- See Also:
- Constant Field Values
-
GL_CURRENT_VERTEX_ATTRIB
public static final int GL_CURRENT_VERTEX_ATTRIB
- See Also:
- Constant Field Values
-
GL_FRONT
public static final int GL_FRONT
- See Also:
- Constant Field Values
-
GL_BACK
public static final int GL_BACK
- See Also:
- Constant Field Values
-
GL_FRONT_AND_BACK
public static final int GL_FRONT_AND_BACK
- See Also:
- Constant Field Values
-
GL_TEXTURE_2D
public static final int GL_TEXTURE_2D
- See Also:
- Constant Field Values
-
GL_CULL_FACE
public static final int GL_CULL_FACE
- See Also:
- Constant Field Values
-
GL_BLEND
public static final int GL_BLEND
- See Also:
- Constant Field Values
-
GL_DITHER
public static final int GL_DITHER
- See Also:
- Constant Field Values
-
GL_STENCIL_TEST
public static final int GL_STENCIL_TEST
- See Also:
- Constant Field Values
-
GL_DEPTH_TEST
public static final int GL_DEPTH_TEST
- See Also:
- Constant Field Values
-
GL_SCISSOR_TEST
public static final int GL_SCISSOR_TEST
- See Also:
- Constant Field Values
-
GL_POLYGON_OFFSET_FILL
public static final int GL_POLYGON_OFFSET_FILL
- See Also:
- Constant Field Values
-
GL_SAMPLE_ALPHA_TO_COVERAGE
public static final int GL_SAMPLE_ALPHA_TO_COVERAGE
- See Also:
- Constant Field Values
-
GL_SAMPLE_COVERAGE
public static final int GL_SAMPLE_COVERAGE
- See Also:
- Constant Field Values
-
GL_NO_ERROR
public static final int GL_NO_ERROR
- See Also:
- Constant Field Values
-
GL_INVALID_ENUM
public static final int GL_INVALID_ENUM
- See Also:
- Constant Field Values
-
GL_INVALID_VALUE
public static final int GL_INVALID_VALUE
- See Also:
- Constant Field Values
-
GL_INVALID_OPERATION
public static final int GL_INVALID_OPERATION
- See Also:
- Constant Field Values
-
GL_OUT_OF_MEMORY
public static final int GL_OUT_OF_MEMORY
- See Also:
- Constant Field Values
-
GL_CW
public static final int GL_CW
- See Also:
- Constant Field Values
-
GL_CCW
public static final int GL_CCW
- See Also:
- Constant Field Values
-
GL_LINE_WIDTH
public static final int GL_LINE_WIDTH
- See Also:
- Constant Field Values
-
GL_ALIASED_POINT_SIZE_RANGE
public static final int GL_ALIASED_POINT_SIZE_RANGE
- See Also:
- Constant Field Values
-
GL_ALIASED_LINE_WIDTH_RANGE
public static final int GL_ALIASED_LINE_WIDTH_RANGE
- See Also:
- Constant Field Values
-
GL_CULL_FACE_MODE
public static final int GL_CULL_FACE_MODE
- See Also:
- Constant Field Values
-
GL_FRONT_FACE
public static final int GL_FRONT_FACE
- See Also:
- Constant Field Values
-
GL_DEPTH_RANGE
public static final int GL_DEPTH_RANGE
- See Also:
- Constant Field Values
-
GL_DEPTH_WRITEMASK
public static final int GL_DEPTH_WRITEMASK
- See Also:
- Constant Field Values
-
GL_DEPTH_CLEAR_VALUE
public static final int GL_DEPTH_CLEAR_VALUE
- See Also:
- Constant Field Values
-
GL_DEPTH_FUNC
public static final int GL_DEPTH_FUNC
- See Also:
- Constant Field Values
-
GL_STENCIL_CLEAR_VALUE
public static final int GL_STENCIL_CLEAR_VALUE
- See Also:
- Constant Field Values
-
GL_STENCIL_FUNC
public static final int GL_STENCIL_FUNC
- See Also:
- Constant Field Values
-
GL_STENCIL_FAIL
public static final int GL_STENCIL_FAIL
- See Also:
- Constant Field Values
-
GL_STENCIL_PASS_DEPTH_FAIL
public static final int GL_STENCIL_PASS_DEPTH_FAIL
- See Also:
- Constant Field Values
-
GL_STENCIL_PASS_DEPTH_PASS
public static final int GL_STENCIL_PASS_DEPTH_PASS
- See Also:
- Constant Field Values
-
GL_STENCIL_REF
public static final int GL_STENCIL_REF
- See Also:
- Constant Field Values
-
GL_STENCIL_VALUE_MASK
public static final int GL_STENCIL_VALUE_MASK
- See Also:
- Constant Field Values
-
GL_STENCIL_WRITEMASK
public static final int GL_STENCIL_WRITEMASK
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_FUNC
public static final int GL_STENCIL_BACK_FUNC
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_FAIL
public static final int GL_STENCIL_BACK_FAIL
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_PASS_DEPTH_FAIL
public static final int GL_STENCIL_BACK_PASS_DEPTH_FAIL
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_PASS_DEPTH_PASS
public static final int GL_STENCIL_BACK_PASS_DEPTH_PASS
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_REF
public static final int GL_STENCIL_BACK_REF
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_VALUE_MASK
public static final int GL_STENCIL_BACK_VALUE_MASK
- See Also:
- Constant Field Values
-
GL_STENCIL_BACK_WRITEMASK
public static final int GL_STENCIL_BACK_WRITEMASK
- See Also:
- Constant Field Values
-
GL_VIEWPORT
public static final int GL_VIEWPORT
- See Also:
- Constant Field Values
-
GL_SCISSOR_BOX
public static final int GL_SCISSOR_BOX
- See Also:
- Constant Field Values
-
GL_COLOR_CLEAR_VALUE
public static final int GL_COLOR_CLEAR_VALUE
- See Also:
- Constant Field Values
-
GL_COLOR_WRITEMASK
public static final int GL_COLOR_WRITEMASK
- See Also:
- Constant Field Values
-
GL_UNPACK_ALIGNMENT
public static final int GL_UNPACK_ALIGNMENT
- See Also:
- Constant Field Values
-
GL_PACK_ALIGNMENT
public static final int GL_PACK_ALIGNMENT
- See Also:
- Constant Field Values
-
GL_MAX_TEXTURE_SIZE
public static final int GL_MAX_TEXTURE_SIZE
- See Also:
- Constant Field Values
-
GL_MAX_VIEWPORT_DIMS
public static final int GL_MAX_VIEWPORT_DIMS
- See Also:
- Constant Field Values
-
GL_SUBPIXEL_BITS
public static final int GL_SUBPIXEL_BITS
- See Also:
- Constant Field Values
-
GL_RED_BITS
public static final int GL_RED_BITS
- See Also:
- Constant Field Values
-
GL_GREEN_BITS
public static final int GL_GREEN_BITS
- See Also:
- Constant Field Values
-
GL_BLUE_BITS
public static final int GL_BLUE_BITS
- See Also:
- Constant Field Values
-
GL_ALPHA_BITS
public static final int GL_ALPHA_BITS
- See Also:
- Constant Field Values
-
GL_DEPTH_BITS
public static final int GL_DEPTH_BITS
- See Also:
- Constant Field Values
-
GL_STENCIL_BITS
public static final int GL_STENCIL_BITS
- See Also:
- Constant Field Values
-
GL_POLYGON_OFFSET_UNITS
public static final int GL_POLYGON_OFFSET_UNITS
- See Also:
- Constant Field Values
-
GL_POLYGON_OFFSET_FACTOR
public static final int GL_POLYGON_OFFSET_FACTOR
- See Also:
- Constant Field Values
-
GL_TEXTURE_BINDING_2D
public static final int GL_TEXTURE_BINDING_2D
- See Also:
- Constant Field Values
-
GL_SAMPLE_BUFFERS
public static final int GL_SAMPLE_BUFFERS
- See Also:
- Constant Field Values
-
GL_SAMPLES
public static final int GL_SAMPLES
- See Also:
- Constant Field Values
-
GL_SAMPLE_COVERAGE_VALUE
public static final int GL_SAMPLE_COVERAGE_VALUE
- See Also:
- Constant Field Values
-
GL_SAMPLE_COVERAGE_INVERT
public static final int GL_SAMPLE_COVERAGE_INVERT
- See Also:
- Constant Field Values
-
GL_NUM_COMPRESSED_TEXTURE_FORMATS
public static final int GL_NUM_COMPRESSED_TEXTURE_FORMATS
- See Also:
- Constant Field Values
-
GL_COMPRESSED_TEXTURE_FORMATS
public static final int GL_COMPRESSED_TEXTURE_FORMATS
- See Also:
- Constant Field Values
-
GL_DONT_CARE
public static final int GL_DONT_CARE
- See Also:
- Constant Field Values
-
GL_FASTEST
public static final int GL_FASTEST
- See Also:
- Constant Field Values
-
GL_NICEST
public static final int GL_NICEST
- See Also:
- Constant Field Values
-
GL_GENERATE_MIPMAP_HINT
public static final int GL_GENERATE_MIPMAP_HINT
- See Also:
- Constant Field Values
-
GL_BYTE
public static final int GL_BYTE
- See Also:
- Constant Field Values
-
GL_UNSIGNED_BYTE
public static final int GL_UNSIGNED_BYTE
- See Also:
- Constant Field Values
-
GL_SHORT
public static final int GL_SHORT
- See Also:
- Constant Field Values
-
GL_UNSIGNED_SHORT
public static final int GL_UNSIGNED_SHORT
- See Also:
- Constant Field Values
-
GL_INT
public static final int GL_INT
- See Also:
- Constant Field Values
-
GL_UNSIGNED_INT
public static final int GL_UNSIGNED_INT
- See Also:
- Constant Field Values
-
GL_FLOAT
public static final int GL_FLOAT
- See Also:
- Constant Field Values
-
GL_FIXED
public static final int GL_FIXED
- See Also:
- Constant Field Values
-
GL_DEPTH_COMPONENT
public static final int GL_DEPTH_COMPONENT
- See Also:
- Constant Field Values
-
GL_ALPHA
public static final int GL_ALPHA
- See Also:
- Constant Field Values
-
GL_RGB
public static final int GL_RGB
- See Also:
- Constant Field Values
-
GL_RGBA
public static final int GL_RGBA
- See Also:
- Constant Field Values
-
GL_LUMINANCE
public static final int GL_LUMINANCE
- See Also:
- Constant Field Values
-
GL_LUMINANCE_ALPHA
public static final int GL_LUMINANCE_ALPHA
- See Also:
- Constant Field Values
-
GL_UNSIGNED_SHORT_4_4_4_4
public static final int GL_UNSIGNED_SHORT_4_4_4_4
- See Also:
- Constant Field Values
-
GL_UNSIGNED_SHORT_5_5_5_1
public static final int GL_UNSIGNED_SHORT_5_5_5_1
- See Also:
- Constant Field Values
-
GL_UNSIGNED_SHORT_5_6_5
public static final int GL_UNSIGNED_SHORT_5_6_5
- See Also:
- Constant Field Values
-
GL_FRAGMENT_SHADER
public static final int GL_FRAGMENT_SHADER
- See Also:
- Constant Field Values
-
GL_VERTEX_SHADER
public static final int GL_VERTEX_SHADER
- See Also:
- Constant Field Values
-
GL_MAX_VERTEX_ATTRIBS
public static final int GL_MAX_VERTEX_ATTRIBS
- See Also:
- Constant Field Values
-
GL_MAX_VERTEX_UNIFORM_VECTORS
public static final int GL_MAX_VERTEX_UNIFORM_VECTORS
- See Also:
- Constant Field Values
-
GL_MAX_VARYING_VECTORS
public static final int GL_MAX_VARYING_VECTORS
- See Also:
- Constant Field Values
-
GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS
public static final int GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS
- See Also:
- Constant Field Values
-
GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS
public static final int GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS
- See Also:
- Constant Field Values
-
GL_MAX_TEXTURE_IMAGE_UNITS
public static final int GL_MAX_TEXTURE_IMAGE_UNITS
- See Also:
- Constant Field Values
-
GL_MAX_FRAGMENT_UNIFORM_VECTORS
public static final int GL_MAX_FRAGMENT_UNIFORM_VECTORS
- See Also:
- Constant Field Values
-
GL_SHADER_TYPE
public static final int GL_SHADER_TYPE
- See Also:
- Constant Field Values
-
GL_DELETE_STATUS
public static final int GL_DELETE_STATUS
- See Also:
- Constant Field Values
-
GL_LINK_STATUS
public static final int GL_LINK_STATUS
- See Also:
- Constant Field Values
-
GL_VALIDATE_STATUS
public static final int GL_VALIDATE_STATUS
- See Also:
- Constant Field Values
-
GL_ATTACHED_SHADERS
public static final int GL_ATTACHED_SHADERS
- See Also:
- Constant Field Values
-
GL_ACTIVE_UNIFORMS
public static final int GL_ACTIVE_UNIFORMS
- See Also:
- Constant Field Values
-
GL_ACTIVE_UNIFORM_MAX_LENGTH
public static final int GL_ACTIVE_UNIFORM_MAX_LENGTH
- See Also:
- Constant Field Values
-
GL_ACTIVE_ATTRIBUTES
public static final int GL_ACTIVE_ATTRIBUTES
- See Also:
- Constant Field Values
-
GL_ACTIVE_ATTRIBUTE_MAX_LENGTH
public static final int GL_ACTIVE_ATTRIBUTE_MAX_LENGTH
- See Also:
- Constant Field Values
-
GL_SHADING_LANGUAGE_VERSION
public static final int GL_SHADING_LANGUAGE_VERSION
- See Also:
- Constant Field Values
-
GL_CURRENT_PROGRAM
public static final int GL_CURRENT_PROGRAM
- See Also:
- Constant Field Values
-
GL_NEVER
public static final int GL_NEVER
- See Also:
- Constant Field Values
-
GL_LESS
public static final int GL_LESS
- See Also:
- Constant Field Values
-
GL_EQUAL
public static final int GL_EQUAL
- See Also:
- Constant Field Values
-
GL_LEQUAL
public static final int GL_LEQUAL
- See Also:
- Constant Field Values
-
GL_GREATER
public static final int GL_GREATER
- See Also:
- Constant Field Values
-
GL_NOTEQUAL
public static final int GL_NOTEQUAL
- See Also:
- Constant Field Values
-
GL_GEQUAL
public static final int GL_GEQUAL
- See Also:
- Constant Field Values
-
GL_ALWAYS
public static final int GL_ALWAYS
- See Also:
- Constant Field Values
-
GL_KEEP
public static final int GL_KEEP
- See Also:
- Constant Field Values
-
GL_REPLACE
public static final int GL_REPLACE
- See Also:
- Constant Field Values
-
GL_INCR
public static final int GL_INCR
- See Also:
- Constant Field Values
-
GL_DECR
public static final int GL_DECR
- See Also:
- Constant Field Values
-
GL_INVERT
public static final int GL_INVERT
- See Also:
- Constant Field Values
-
GL_INCR_WRAP
public static final int GL_INCR_WRAP
- See Also:
- Constant Field Values
-
GL_DECR_WRAP
public static final int GL_DECR_WRAP
- See Also:
- Constant Field Values
-
GL_VENDOR
public static final int GL_VENDOR
- See Also:
- Constant Field Values
-
GL_RENDERER
public static final int GL_RENDERER
- See Also:
- Constant Field Values
-
GL_VERSION
public static final int GL_VERSION
- See Also:
- Constant Field Values
-
GL_EXTENSIONS
public static final int GL_EXTENSIONS
- See Also:
- Constant Field Values
-
GL_NEAREST
public static final int GL_NEAREST
- See Also:
- Constant Field Values
-
GL_LINEAR
public static final int GL_LINEAR
- See Also:
- Constant Field Values
-
GL_NEAREST_MIPMAP_NEAREST
public static final int GL_NEAREST_MIPMAP_NEAREST
- See Also:
- Constant Field Values
-
GL_LINEAR_MIPMAP_NEAREST
public static final int GL_LINEAR_MIPMAP_NEAREST
- See Also:
- Constant Field Values
-
GL_NEAREST_MIPMAP_LINEAR
public static final int GL_NEAREST_MIPMAP_LINEAR
- See Also:
- Constant Field Values
-
GL_LINEAR_MIPMAP_LINEAR
public static final int GL_LINEAR_MIPMAP_LINEAR
- See Also:
- Constant Field Values
-
GL_TEXTURE_MAG_FILTER
public static final int GL_TEXTURE_MAG_FILTER
- See Also:
- Constant Field Values
-
GL_TEXTURE_MIN_FILTER
public static final int GL_TEXTURE_MIN_FILTER
- See Also:
- Constant Field Values
-
GL_TEXTURE_WRAP_S
public static final int GL_TEXTURE_WRAP_S
- See Also:
- Constant Field Values
-
GL_TEXTURE_WRAP_T
public static final int GL_TEXTURE_WRAP_T
- See Also:
- Constant Field Values
-
GL_TEXTURE
public static final int GL_TEXTURE
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP
public static final int GL_TEXTURE_CUBE_MAP
- See Also:
- Constant Field Values
-
GL_TEXTURE_BINDING_CUBE_MAP
public static final int GL_TEXTURE_BINDING_CUBE_MAP
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_POSITIVE_X
public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_X
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_X
public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_X
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_POSITIVE_Y
public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Y
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y
public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Y
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_POSITIVE_Z
public static final int GL_TEXTURE_CUBE_MAP_POSITIVE_Z
- See Also:
- Constant Field Values
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
public static final int GL_TEXTURE_CUBE_MAP_NEGATIVE_Z
- See Also:
- Constant Field Values
-
GL_MAX_CUBE_MAP_TEXTURE_SIZE
public static final int GL_MAX_CUBE_MAP_TEXTURE_SIZE
- See Also:
- Constant Field Values
-
GL_TEXTURE0
public static final int GL_TEXTURE0
- See Also:
- Constant Field Values
-
GL_TEXTURE1
public static final int GL_TEXTURE1
- See Also:
- Constant Field Values
-
GL_TEXTURE2
public static final int GL_TEXTURE2
- See Also:
- Constant Field Values
-
GL_TEXTURE3
public static final int GL_TEXTURE3
- See Also:
- Constant Field Values
-
GL_TEXTURE4
public static final int GL_TEXTURE4
- See Also:
- Constant Field Values
-
GL_TEXTURE5
public static final int GL_TEXTURE5
- See Also:
- Constant Field Values
-
GL_TEXTURE6
public static final int GL_TEXTURE6
- See Also:
- Constant Field Values
-
GL_TEXTURE7
public static final int GL_TEXTURE7
- See Also:
- Constant Field Values
-
GL_TEXTURE8
public static final int GL_TEXTURE8
- See Also:
- Constant Field Values
-
GL_TEXTURE9
public static final int GL_TEXTURE9
- See Also:
- Constant Field Values
-
GL_TEXTURE10
public static final int GL_TEXTURE10
- See Also:
- Constant Field Values
-
GL_TEXTURE11
public static final int GL_TEXTURE11
- See Also:
- Constant Field Values
-
GL_TEXTURE12
public static final int GL_TEXTURE12
- See Also:
- Constant Field Values
-
GL_TEXTURE13
public static final int GL_TEXTURE13
- See Also:
- Constant Field Values
-
GL_TEXTURE14
public static final int GL_TEXTURE14
- See Also:
- Constant Field Values
-
GL_TEXTURE15
public static final int GL_TEXTURE15
- See Also:
- Constant Field Values
-
GL_TEXTURE16
public static final int GL_TEXTURE16
- See Also:
- Constant Field Values
-
GL_TEXTURE17
public static final int GL_TEXTURE17
- See Also:
- Constant Field Values
-
GL_TEXTURE18
public static final int GL_TEXTURE18
- See Also:
- Constant Field Values
-
GL_TEXTURE19
public static final int GL_TEXTURE19
- See Also:
- Constant Field Values
-
GL_TEXTURE20
public static final int GL_TEXTURE20
- See Also:
- Constant Field Values
-
GL_TEXTURE21
public static final int GL_TEXTURE21
- See Also:
- Constant Field Values
-
GL_TEXTURE22
public static final int GL_TEXTURE22
- See Also:
- Constant Field Values
-
GL_TEXTURE23
public static final int GL_TEXTURE23
- See Also:
- Constant Field Values
-
GL_TEXTURE24
public static final int GL_TEXTURE24
- See Also:
- Constant Field Values
-
GL_TEXTURE25
public static final int GL_TEXTURE25
- See Also:
- Constant Field Values
-
GL_TEXTURE26
public static final int GL_TEXTURE26
- See Also:
- Constant Field Values
-
GL_TEXTURE27
public static final int GL_TEXTURE27
- See Also:
- Constant Field Values
-
GL_TEXTURE28
public static final int GL_TEXTURE28
- See Also:
- Constant Field Values
-
GL_TEXTURE29
public static final int GL_TEXTURE29
- See Also:
- Constant Field Values
-
GL_TEXTURE30
public static final int GL_TEXTURE30
- See Also:
- Constant Field Values
-
GL_TEXTURE31
public static final int GL_TEXTURE31
- See Also:
- Constant Field Values
-
GL_ACTIVE_TEXTURE
public static final int GL_ACTIVE_TEXTURE
- See Also:
- Constant Field Values
-
GL_REPEAT
public static final int GL_REPEAT
- See Also:
- Constant Field Values
-
GL_CLAMP_TO_EDGE
public static final int GL_CLAMP_TO_EDGE
- See Also:
- Constant Field Values
-
GL_MIRRORED_REPEAT
public static final int GL_MIRRORED_REPEAT
- See Also:
- Constant Field Values
-
GL_FLOAT_VEC2
public static final int GL_FLOAT_VEC2
- See Also:
- Constant Field Values
-
GL_FLOAT_VEC3
public static final int GL_FLOAT_VEC3
- See Also:
- Constant Field Values
-
GL_FLOAT_VEC4
public static final int GL_FLOAT_VEC4
- See Also:
- Constant Field Values
-
GL_INT_VEC2
public static final int GL_INT_VEC2
- See Also:
- Constant Field Values
-
GL_INT_VEC3
public static final int GL_INT_VEC3
- See Also:
- Constant Field Values
-
GL_INT_VEC4
public static final int GL_INT_VEC4
- See Also:
- Constant Field Values
-
GL_BOOL
public static final int GL_BOOL
- See Also:
- Constant Field Values
-
GL_BOOL_VEC2
public static final int GL_BOOL_VEC2
- See Also:
- Constant Field Values
-
GL_BOOL_VEC3
public static final int GL_BOOL_VEC3
- See Also:
- Constant Field Values
-
GL_BOOL_VEC4
public static final int GL_BOOL_VEC4
- See Also:
- Constant Field Values
-
GL_FLOAT_MAT2
public static final int GL_FLOAT_MAT2
- See Also:
- Constant Field Values
-
GL_FLOAT_MAT3
public static final int GL_FLOAT_MAT3
- See Also:
- Constant Field Values
-
GL_FLOAT_MAT4
public static final int GL_FLOAT_MAT4
- See Also:
- Constant Field Values
-
GL_SAMPLER_2D
public static final int GL_SAMPLER_2D
- See Also:
- Constant Field Values
-
GL_SAMPLER_CUBE
public static final int GL_SAMPLER_CUBE
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_ENABLED
public static final int GL_VERTEX_ATTRIB_ARRAY_ENABLED
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_SIZE
public static final int GL_VERTEX_ATTRIB_ARRAY_SIZE
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_STRIDE
public static final int GL_VERTEX_ATTRIB_ARRAY_STRIDE
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_TYPE
public static final int GL_VERTEX_ATTRIB_ARRAY_TYPE
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_NORMALIZED
public static final int GL_VERTEX_ATTRIB_ARRAY_NORMALIZED
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_POINTER
public static final int GL_VERTEX_ATTRIB_ARRAY_POINTER
- See Also:
- Constant Field Values
-
GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING
public static final int GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING
- See Also:
- Constant Field Values
-
GL_IMPLEMENTATION_COLOR_READ_TYPE
public static final int GL_IMPLEMENTATION_COLOR_READ_TYPE
- See Also:
- Constant Field Values
-
GL_IMPLEMENTATION_COLOR_READ_FORMAT
public static final int GL_IMPLEMENTATION_COLOR_READ_FORMAT
- See Also:
- Constant Field Values
-
GL_COMPILE_STATUS
public static final int GL_COMPILE_STATUS
- See Also:
- Constant Field Values
-
GL_INFO_LOG_LENGTH
public static final int GL_INFO_LOG_LENGTH
- See Also:
- Constant Field Values
-
GL_SHADER_SOURCE_LENGTH
public static final int GL_SHADER_SOURCE_LENGTH
- See Also:
- Constant Field Values
-
GL_SHADER_COMPILER
public static final int GL_SHADER_COMPILER
- See Also:
- Constant Field Values
-
GL_SHADER_BINARY_FORMATS
public static final int GL_SHADER_BINARY_FORMATS
- See Also:
- Constant Field Values
-
GL_NUM_SHADER_BINARY_FORMATS
public static final int GL_NUM_SHADER_BINARY_FORMATS
- See Also:
- Constant Field Values
-
GL_LOW_FLOAT
public static final int GL_LOW_FLOAT
- See Also:
- Constant Field Values
-
GL_MEDIUM_FLOAT
public static final int GL_MEDIUM_FLOAT
- See Also:
- Constant Field Values
-
GL_HIGH_FLOAT
public static final int GL_HIGH_FLOAT
- See Also:
- Constant Field Values
-
GL_LOW_INT
public static final int GL_LOW_INT
- See Also:
- Constant Field Values
-
GL_MEDIUM_INT
public static final int GL_MEDIUM_INT
- See Also:
- Constant Field Values
-
GL_HIGH_INT
public static final int GL_HIGH_INT
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER
public static final int GL_FRAMEBUFFER
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER
public static final int GL_RENDERBUFFER
- See Also:
- Constant Field Values
-
GL_RGBA4
public static final int GL_RGBA4
- See Also:
- Constant Field Values
-
GL_RGB5_A1
public static final int GL_RGB5_A1
- See Also:
- Constant Field Values
-
GL_RGB565
public static final int GL_RGB565
- See Also:
- Constant Field Values
-
GL_DEPTH_COMPONENT16
public static final int GL_DEPTH_COMPONENT16
- See Also:
- Constant Field Values
-
GL_STENCIL_INDEX8
public static final int GL_STENCIL_INDEX8
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_WIDTH
public static final int GL_RENDERBUFFER_WIDTH
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_HEIGHT
public static final int GL_RENDERBUFFER_HEIGHT
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_INTERNAL_FORMAT
public static final int GL_RENDERBUFFER_INTERNAL_FORMAT
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_RED_SIZE
public static final int GL_RENDERBUFFER_RED_SIZE
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_GREEN_SIZE
public static final int GL_RENDERBUFFER_GREEN_SIZE
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_BLUE_SIZE
public static final int GL_RENDERBUFFER_BLUE_SIZE
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_ALPHA_SIZE
public static final int GL_RENDERBUFFER_ALPHA_SIZE
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_DEPTH_SIZE
public static final int GL_RENDERBUFFER_DEPTH_SIZE
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_STENCIL_SIZE
public static final int GL_RENDERBUFFER_STENCIL_SIZE
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
public static final int GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME
public static final int GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL
public static final int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE
public static final int GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE
- See Also:
- Constant Field Values
-
GL_COLOR_ATTACHMENT0
public static final int GL_COLOR_ATTACHMENT0
- See Also:
- Constant Field Values
-
GL_DEPTH_ATTACHMENT
public static final int GL_DEPTH_ATTACHMENT
- See Also:
- Constant Field Values
-
GL_STENCIL_ATTACHMENT
public static final int GL_STENCIL_ATTACHMENT
- See Also:
- Constant Field Values
-
GL_NONE
public static final int GL_NONE
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_COMPLETE
public static final int GL_FRAMEBUFFER_COMPLETE
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
public static final int GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
public static final int GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS
public static final int GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_UNSUPPORTED
public static final int GL_FRAMEBUFFER_UNSUPPORTED
- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_BINDING
public static final int GL_FRAMEBUFFER_BINDING
- See Also:
- Constant Field Values
-
GL_RENDERBUFFER_BINDING
public static final int GL_RENDERBUFFER_BINDING
- See Also:
- Constant Field Values
-
GL_MAX_RENDERBUFFER_SIZE
public static final int GL_MAX_RENDERBUFFER_SIZE
- See Also:
- Constant Field Values
-
GL_INVALID_FRAMEBUFFER_OPERATION
public static final int GL_INVALID_FRAMEBUFFER_OPERATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
glActiveTexture
public static void glActiveTexture(int texture)
-
glAttachShader
public static void glAttachShader(int program, int shader)
-
glBindAttribLocation
public static void glBindAttribLocation(int program, int index, java.nio.ByteBuffer name)
-
glBindAttribLocation
public static void glBindAttribLocation(int program, int index, java.lang.CharSequence name)
-
glBindBuffer
public static void glBindBuffer(int target, int buffer)
-
glBindFramebuffer
public static void glBindFramebuffer(int target, int framebuffer)
-
glBindRenderbuffer
public static void glBindRenderbuffer(int target, int renderbuffer)
-
glBindTexture
public static void glBindTexture(int target, int texture)
-
glBlendColor
public static void glBlendColor(float red, float green, float blue, float alpha)
-
glBlendEquation
public static void glBlendEquation(int mode)
-
glBlendEquationSeparate
public static void glBlendEquationSeparate(int modeRGB, int modeAlpha)
-
glBlendFunc
public static void glBlendFunc(int sfactor, int dfactor)
-
glBlendFuncSeparate
public static void glBlendFuncSeparate(int sfactorRGB, int dfactorRGB, int sfactorAlpha, int dfactorAlpha)
-
glBufferData
public static void glBufferData(int target, long size, int usage)
-
glBufferData
public static void glBufferData(int target, java.nio.ByteBuffer data, int usage)
ByteBuffer version of:BufferData
-
glBufferData
public static void glBufferData(int target, java.nio.ShortBuffer data, int usage)
ShortBuffer version of:BufferData
-
glBufferData
public static void glBufferData(int target, java.nio.IntBuffer data, int usage)
IntBuffer version of:BufferData
-
glBufferData
public static void glBufferData(int target, java.nio.FloatBuffer data, int usage)
FloatBuffer version of:BufferData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, java.nio.ByteBuffer data)
-
glBufferSubData
public static void glBufferSubData(int target, long offset, java.nio.ShortBuffer data)
ShortBuffer version of:BufferSubData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, java.nio.IntBuffer data)
IntBuffer version of:BufferSubData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, java.nio.FloatBuffer data)
FloatBuffer version of:BufferSubData
-
glCheckFramebufferStatus
public static int glCheckFramebufferStatus(int target)
-
glClear
public static void glClear(int mask)
-
glClearColor
public static void glClearColor(float red, float green, float blue, float alpha)
-
glClearDepthf
public static void glClearDepthf(float d)
-
glClearStencil
public static void glClearStencil(int s)
-
glColorMask
public static void glColorMask(boolean red, boolean green, boolean blue, boolean alpha)
-
glCompileShader
public static void glCompileShader(int shader)
-
glCompressedTexImage2D
public static void glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, long data)
-
glCompressedTexImage2D
public static void glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, java.nio.ByteBuffer data)
-
glCompressedTexSubImage2D
public static void glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int imageSize, long data)
-
glCompressedTexSubImage2D
public static void glCompressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, java.nio.ByteBuffer data)
-
glCopyTexImage2D
public static void glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border)
-
glCopyTexSubImage2D
public static void glCopyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height)
-
glCreateProgram
public static int glCreateProgram()
-
glCreateShader
public static int glCreateShader(int type)
-
glCullFace
public static void glCullFace(int mode)
-
glDeleteBuffers
public static void glDeleteBuffers(java.nio.IntBuffer buffers)
-
glDeleteBuffers
public static void glDeleteBuffers(int buffer)
-
glDeleteFramebuffers
public static void glDeleteFramebuffers(java.nio.IntBuffer framebuffers)
-
glDeleteFramebuffers
public static void glDeleteFramebuffers(int framebuffer)
-
glDeleteProgram
public static void glDeleteProgram(int program)
-
glDeleteRenderbuffers
public static void glDeleteRenderbuffers(java.nio.IntBuffer renderbuffers)
-
glDeleteRenderbuffers
public static void glDeleteRenderbuffers(int renderbuffer)
-
glDeleteShader
public static void glDeleteShader(int shader)
-
glDeleteTextures
public static void glDeleteTextures(java.nio.IntBuffer textures)
-
glDeleteTextures
public static void glDeleteTextures(int texture)
-
glDepthFunc
public static void glDepthFunc(int func)
-
glDepthMask
public static void glDepthMask(boolean flag)
-
glDepthRangef
public static void glDepthRangef(float n, float f)
-
glDetachShader
public static void glDetachShader(int program, int shader)
-
glDisable
public static void glDisable(int cap)
-
glDisableVertexAttribArray
public static void glDisableVertexAttribArray(int index)
-
glDrawArrays
public static void glDrawArrays(int mode, int first, int count)
-
glDrawElements
public static void glDrawElements(int mode, int count, int type, long indices)
-
glDrawElements
public static void glDrawElements(int mode, int type, java.nio.ByteBuffer indices)
-
glDrawElements
public static void glDrawElements(int mode, java.nio.ByteBuffer indices)
-
glDrawElements
public static void glDrawElements(int mode, java.nio.ShortBuffer indices)
-
glDrawElements
public static void glDrawElements(int mode, java.nio.IntBuffer indices)
-
glEnable
public static void glEnable(int cap)
-
glEnableVertexAttribArray
public static void glEnableVertexAttribArray(int index)
-
glFinish
public static void glFinish()
-
glFlush
public static void glFlush()
-
glFramebufferRenderbuffer
public static void glFramebufferRenderbuffer(int target, int attachment, int renderbuffertarget, int renderbuffer)
-
glFramebufferTexture2D
public static void glFramebufferTexture2D(int target, int attachment, int textarget, int texture, int level)
-
glFrontFace
public static void glFrontFace(int mode)
-
glGenBuffers
public static void glGenBuffers(java.nio.IntBuffer buffers)
-
glGenBuffers
public static int glGenBuffers()
-
glGenerateMipmap
public static void glGenerateMipmap(int target)
-
glGenFramebuffers
public static void glGenFramebuffers(java.nio.IntBuffer framebuffers)
-
glGenFramebuffers
public static int glGenFramebuffers()
-
glGenRenderbuffers
public static void glGenRenderbuffers(java.nio.IntBuffer renderbuffers)
-
glGenRenderbuffers
public static int glGenRenderbuffers()
-
glGenTextures
public static void glGenTextures(java.nio.IntBuffer textures)
-
glGenTextures
public static int glGenTextures()
-
glGetActiveAttrib
public static void glGetActiveAttrib(int program, int index, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name)
-
glGetActiveAttrib
public static java.lang.String glGetActiveAttrib(int program, int index, int bufSize, java.nio.IntBuffer size, java.nio.IntBuffer type)
-
glGetActiveAttrib
public static java.lang.String glGetActiveAttrib(int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type)
-
glGetActiveUniform
public static void glGetActiveUniform(int program, int index, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name)
-
glGetActiveUniform
public static java.lang.String glGetActiveUniform(int program, int index, int bufSize, java.nio.IntBuffer size, java.nio.IntBuffer type)
-
glGetActiveUniform
public static java.lang.String glGetActiveUniform(int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type)
-
glGetAttachedShaders
public static void glGetAttachedShaders(int program, java.nio.IntBuffer count, java.nio.IntBuffer shaders)
-
glGetAttribLocation
public static int glGetAttribLocation(int program, java.nio.ByteBuffer name)
-
glGetAttribLocation
public static int glGetAttribLocation(int program, java.lang.CharSequence name)
-
glGetBooleanv
public static void glGetBooleanv(int pname, java.nio.ByteBuffer data)
-
glGetBoolean
public static byte glGetBoolean(int pname)
-
glGetBufferParameteriv
public static void glGetBufferParameteriv(int target, int pname, java.nio.IntBuffer params)
-
glGetBufferParameteri
public static int glGetBufferParameteri(int target, int pname)
-
glGetError
public static int glGetError()
-
glGetFloatv
public static void glGetFloatv(int pname, java.nio.FloatBuffer data)
-
glGetFloat
public static float glGetFloat(int pname)
-
glGetFramebufferAttachmentParameteriv
public static void glGetFramebufferAttachmentParameteriv(int target, int attachment, int pname, java.nio.IntBuffer params)
-
glGetFramebufferAttachmentParameteri
public static int glGetFramebufferAttachmentParameteri(int target, int attachment, int pname)
-
glGetIntegerv
public static void glGetIntegerv(int pname, java.nio.IntBuffer data)
-
glGetInteger
public static int glGetInteger(int pname)
-
glGetProgramiv
public static void glGetProgramiv(int program, int pname, java.nio.IntBuffer params)
-
glGetProgrami
public static int glGetProgrami(int program, int pname)
-
glGetProgramInfoLog
public static void glGetProgramInfoLog(int program, java.nio.IntBuffer length, java.nio.ByteBuffer infoLog)
-
glGetProgramInfoLog
public static java.lang.String glGetProgramInfoLog(int program, int bufSize)
-
glGetProgramInfoLog
public static java.lang.String glGetProgramInfoLog(int program)
-
glGetRenderbufferParameteriv
public static void glGetRenderbufferParameteriv(int target, int pname, java.nio.IntBuffer params)
-
glGetRenderbufferParameteri
public static int glGetRenderbufferParameteri(int target, int pname)
-
glGetShaderiv
public static void glGetShaderiv(int shader, int pname, java.nio.IntBuffer params)
-
glGetShaderi
public static int glGetShaderi(int shader, int pname)
-
glGetShaderInfoLog
public static void glGetShaderInfoLog(int shader, java.nio.IntBuffer length, java.nio.ByteBuffer infoLog)
-
glGetShaderInfoLog
public static java.lang.String glGetShaderInfoLog(int shader, int bufSize)
-
glGetShaderInfoLog
public static java.lang.String glGetShaderInfoLog(int shader)
-
glGetShaderPrecisionFormat
public static void glGetShaderPrecisionFormat(int shadertype, int precisiontype, java.nio.IntBuffer range, java.nio.IntBuffer precision)
-
glGetShaderSource
public static void glGetShaderSource(int shader, java.nio.IntBuffer length, java.nio.ByteBuffer source)
-
glGetShaderSource
public static java.lang.String glGetShaderSource(int shader, int bufSize)
-
glGetShaderSource
public static java.lang.String glGetShaderSource(int shader)
-
glGetString
public static java.lang.String glGetString(int name)
-
glGetTexParameterfv
public static void glGetTexParameterfv(int target, int pname, java.nio.FloatBuffer params)
-
glGetTexParameterf
public static float glGetTexParameterf(int target, int pname)
-
glGetTexParameteriv
public static void glGetTexParameteriv(int target, int pname, java.nio.IntBuffer params)
-
glGetTexParameteri
public static int glGetTexParameteri(int target, int pname)
-
glGetUniformfv
public static void glGetUniformfv(int program, int location, java.nio.FloatBuffer params)
-
glGetUniformf
public static float glGetUniformf(int program, int location)
-
glGetUniformiv
public static void glGetUniformiv(int program, int location, java.nio.IntBuffer params)
-
glGetUniformi
public static int glGetUniformi(int program, int location)
-
glGetUniformLocation
public static int glGetUniformLocation(int program, java.nio.ByteBuffer name)
-
glGetUniformLocation
public static int glGetUniformLocation(int program, java.lang.CharSequence name)
-
glGetVertexAttribfv
public static void glGetVertexAttribfv(int index, int pname, java.nio.FloatBuffer params)
-
glGetVertexAttribiv
public static void glGetVertexAttribiv(int index, int pname, java.nio.IntBuffer params)
-
glGetVertexAttribPointerv
public static void glGetVertexAttribPointerv(int index, int pname, PointerBuffer pointer)
-
glGetVertexAttribPointer
public static long glGetVertexAttribPointer(int index, int pname)
-
glHint
public static void glHint(int target, int mode)
-
glIsBuffer
public static boolean glIsBuffer(int buffer)
-
glIsEnabled
public static boolean glIsEnabled(int cap)
-
glIsFramebuffer
public static boolean glIsFramebuffer(int framebuffer)
-
glIsProgram
public static boolean glIsProgram(int program)
-
glIsRenderbuffer
public static boolean glIsRenderbuffer(int renderbuffer)
-
glIsShader
public static boolean glIsShader(int shader)
-
glIsTexture
public static boolean glIsTexture(int texture)
-
glLineWidth
public static void glLineWidth(float width)
-
glLinkProgram
public static void glLinkProgram(int program)
-
glPixelStorei
public static void glPixelStorei(int pname, int param)
-
glPolygonOffset
public static void glPolygonOffset(float factor, float units)
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.ByteBuffer pixels)
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, long pixels)
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:ReadPixels
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:ReadPixels
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:ReadPixels
-
glReleaseShaderCompiler
public static void glReleaseShaderCompiler()
-
glRenderbufferStorage
public static void glRenderbufferStorage(int target, int internalformat, int width, int height)
-
glSampleCoverage
public static void glSampleCoverage(float value, boolean invert)
-
glScissor
public static void glScissor(int x, int y, int width, int height)
-
glShaderBinary
public static void glShaderBinary(java.nio.IntBuffer shaders, int binaryformat, java.nio.ByteBuffer binary)
-
glShaderSource
public static void glShaderSource(int shader, PointerBuffer string, java.nio.IntBuffer length)
-
glShaderSource
public static void glShaderSource(int shader, java.lang.CharSequence... string)
-
glShaderSource
public static void glShaderSource(int shader, java.lang.CharSequence string)
-
glStencilFunc
public static void glStencilFunc(int func, int ref, int mask)
-
glStencilFuncSeparate
public static void glStencilFuncSeparate(int face, int func, int ref, int mask)
-
glStencilMask
public static void glStencilMask(int mask)
-
glStencilMaskSeparate
public static void glStencilMaskSeparate(int face, int mask)
-
glStencilOp
public static void glStencilOp(int fail, int zfail, int zpass)
-
glStencilOpSeparate
public static void glStencilOpSeparate(int face, int sfail, int dpfail, int dppass)
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.ByteBuffer pixels)
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, long pixels)
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:TexImage2D
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:TexImage2D
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:TexImage2D
-
glTexParameterf
public static void glTexParameterf(int target, int pname, float param)
-
glTexParameterfv
public static void glTexParameterfv(int target, int pname, java.nio.FloatBuffer params)
-
glTexParameteri
public static void glTexParameteri(int target, int pname, int param)
-
glTexParameteriv
public static void glTexParameteriv(int target, int pname, java.nio.IntBuffer params)
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.ByteBuffer pixels)
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, long pixels)
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.ShortBuffer pixels)
ShortBuffer version of:TexSubImage2D
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.IntBuffer pixels)
IntBuffer version of:TexSubImage2D
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.FloatBuffer pixels)
FloatBuffer version of:TexSubImage2D
-
glUniform1f
public static void glUniform1f(int location, float v0)
-
glUniform1fv
public static void glUniform1fv(int location, java.nio.FloatBuffer value)
-
glUniform1i
public static void glUniform1i(int location, int v0)
-
glUniform1iv
public static void glUniform1iv(int location, java.nio.IntBuffer value)
-
glUniform2f
public static void glUniform2f(int location, float v0, float v1)
-
glUniform2fv
public static void glUniform2fv(int location, java.nio.FloatBuffer value)
-
glUniform2i
public static void glUniform2i(int location, int v0, int v1)
-
glUniform2iv
public static void glUniform2iv(int location, java.nio.IntBuffer value)
-
glUniform3f
public static void glUniform3f(int location, float v0, float v1, float v2)
-
glUniform3fv
public static void glUniform3fv(int location, java.nio.FloatBuffer value)
-
glUniform3i
public static void glUniform3i(int location, int v0, int v1, int v2)
-
glUniform3iv
public static void glUniform3iv(int location, java.nio.IntBuffer value)
-
glUniform4f
public static void glUniform4f(int location, float v0, float v1, float v2, float v3)
-
glUniform4fv
public static void glUniform4fv(int location, java.nio.FloatBuffer value)
-
glUniform4i
public static void glUniform4i(int location, int v0, int v1, int v2, int v3)
-
glUniform4iv
public static void glUniform4iv(int location, java.nio.IntBuffer value)
-
glUniformMatrix2fv
public static void glUniformMatrix2fv(int location, boolean transpose, java.nio.FloatBuffer value)
-
glUniformMatrix3fv
public static void glUniformMatrix3fv(int location, boolean transpose, java.nio.FloatBuffer value)
-
glUniformMatrix4fv
public static void glUniformMatrix4fv(int location, boolean transpose, java.nio.FloatBuffer value)
-
glUseProgram
public static void glUseProgram(int program)
-
glValidateProgram
public static void glValidateProgram(int program)
-
glVertexAttrib1f
public static void glVertexAttrib1f(int index, float x)
-
glVertexAttrib1fv
public static void glVertexAttrib1fv(int index, java.nio.FloatBuffer v)
-
glVertexAttrib2f
public static void glVertexAttrib2f(int index, float x, float y)
-
glVertexAttrib2fv
public static void glVertexAttrib2fv(int index, java.nio.FloatBuffer v)
-
glVertexAttrib3f
public static void glVertexAttrib3f(int index, float x, float y, float z)
-
glVertexAttrib3fv
public static void glVertexAttrib3fv(int index, java.nio.FloatBuffer v)
-
glVertexAttrib4f
public static void glVertexAttrib4f(int index, float x, float y, float z, float w)
-
glVertexAttrib4fv
public static void glVertexAttrib4fv(int index, java.nio.FloatBuffer v)
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.ByteBuffer pointer)
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, long pointer)
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.ShortBuffer pointer)
ShortBuffer version of:VertexAttribPointer
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.IntBuffer pointer)
IntBuffer version of:VertexAttribPointer
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, java.nio.FloatBuffer pointer)
FloatBuffer version of:VertexAttribPointer
-
glViewport
public static void glViewport(int x, int y, int width, int height)
-
glBufferData
public static void glBufferData(int target, short[] data, int usage)
short[] version of:BufferData
-
glBufferData
public static void glBufferData(int target, int[] data, int usage)
int[] version of:BufferData
-
glBufferData
public static void glBufferData(int target, float[] data, int usage)
float[] version of:BufferData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, short[] data)
short[] version of:BufferSubData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, int[] data)
int[] version of:BufferSubData
-
glBufferSubData
public static void glBufferSubData(int target, long offset, float[] data)
float[] version of:BufferSubData
-
glDeleteBuffers
public static void glDeleteBuffers(int[] buffers)
Array version of:DeleteBuffers
-
glDeleteFramebuffers
public static void glDeleteFramebuffers(int[] framebuffers)
Array version of:DeleteFramebuffers
-
glDeleteRenderbuffers
public static void glDeleteRenderbuffers(int[] renderbuffers)
Array version of:DeleteRenderbuffers
-
glDeleteTextures
public static void glDeleteTextures(int[] textures)
Array version of:DeleteTextures
-
glGenBuffers
public static void glGenBuffers(int[] buffers)
Array version of:GenBuffers
-
glGenFramebuffers
public static void glGenFramebuffers(int[] framebuffers)
Array version of:GenFramebuffers
-
glGenRenderbuffers
public static void glGenRenderbuffers(int[] renderbuffers)
Array version of:GenRenderbuffers
-
glGenTextures
public static void glGenTextures(int[] textures)
Array version of:GenTextures
-
glGetActiveAttrib
public static void glGetActiveAttrib(int program, int index, int[] length, int[] size, int[] type, java.nio.ByteBuffer name)
Array version of:GetActiveAttrib
-
glGetActiveUniform
public static void glGetActiveUniform(int program, int index, int[] length, int[] size, int[] type, java.nio.ByteBuffer name)
Array version of:GetActiveUniform
-
glGetAttachedShaders
public static void glGetAttachedShaders(int program, int[] count, int[] shaders)
Array version of:GetAttachedShaders
-
glGetBufferParameteriv
public static void glGetBufferParameteriv(int target, int pname, int[] params)
Array version of:GetBufferParameteriv
-
glGetFloatv
public static void glGetFloatv(int pname, float[] data)
Array version of:GetFloatv
-
glGetFramebufferAttachmentParameteriv
public static void glGetFramebufferAttachmentParameteriv(int target, int attachment, int pname, int[] params)
Array version of:GetFramebufferAttachmentParameteriv
-
glGetIntegerv
public static void glGetIntegerv(int pname, int[] data)
Array version of:GetIntegerv
-
glGetProgramiv
public static void glGetProgramiv(int program, int pname, int[] params)
Array version of:GetProgramiv
-
glGetProgramInfoLog
public static void glGetProgramInfoLog(int program, int[] length, java.nio.ByteBuffer infoLog)
Array version of:GetProgramInfoLog
-
glGetRenderbufferParameteriv
public static void glGetRenderbufferParameteriv(int target, int pname, int[] params)
Array version of:GetRenderbufferParameteriv
-
glGetShaderiv
public static void glGetShaderiv(int shader, int pname, int[] params)
Array version of:GetShaderiv
-
glGetShaderInfoLog
public static void glGetShaderInfoLog(int shader, int[] length, java.nio.ByteBuffer infoLog)
Array version of:GetShaderInfoLog
-
glGetShaderPrecisionFormat
public static void glGetShaderPrecisionFormat(int shadertype, int precisiontype, int[] range, int[] precision)
Array version of:GetShaderPrecisionFormat
-
glGetShaderSource
public static void glGetShaderSource(int shader, int[] length, java.nio.ByteBuffer source)
Array version of:GetShaderSource
-
glGetTexParameterfv
public static void glGetTexParameterfv(int target, int pname, float[] params)
Array version of:GetTexParameterfv
-
glGetTexParameteriv
public static void glGetTexParameteriv(int target, int pname, int[] params)
Array version of:GetTexParameteriv
-
glGetUniformfv
public static void glGetUniformfv(int program, int location, float[] params)
Array version of:GetUniformfv
-
glGetUniformiv
public static void glGetUniformiv(int program, int location, int[] params)
Array version of:GetUniformiv
-
glGetVertexAttribfv
public static void glGetVertexAttribfv(int index, int pname, float[] params)
Array version of:GetVertexAttribfv
-
glGetVertexAttribiv
public static void glGetVertexAttribiv(int index, int pname, int[] params)
Array version of:GetVertexAttribiv
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, short[] pixels)
short[] version of:ReadPixels
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, int[] pixels)
int[] version of:ReadPixels
-
glReadPixels
public static void glReadPixels(int x, int y, int width, int height, int format, int type, float[] pixels)
float[] version of:ReadPixels
-
glShaderBinary
public static void glShaderBinary(int[] shaders, int binaryformat, java.nio.ByteBuffer binary)
Array version of:ShaderBinary
-
glShaderSource
public static void glShaderSource(int shader, PointerBuffer string, int[] length)
Array version of:ShaderSource
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, short[] pixels)
short[] version of:TexImage2D
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, int[] pixels)
int[] version of:TexImage2D
-
glTexImage2D
public static void glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, float[] pixels)
float[] version of:TexImage2D
-
glTexParameterfv
public static void glTexParameterfv(int target, int pname, float[] params)
Array version of:TexParameterfv
-
glTexParameteriv
public static void glTexParameteriv(int target, int pname, int[] params)
Array version of:TexParameteriv
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, short[] pixels)
short[] version of:TexSubImage2D
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, int[] pixels)
int[] version of:TexSubImage2D
-
glTexSubImage2D
public static void glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, float[] pixels)
float[] version of:TexSubImage2D
-
glUniform1fv
public static void glUniform1fv(int location, float[] value)
Array version of:Uniform1fv
-
glUniform1iv
public static void glUniform1iv(int location, int[] value)
Array version of:Uniform1iv
-
glUniform2fv
public static void glUniform2fv(int location, float[] value)
Array version of:Uniform2fv
-
glUniform2iv
public static void glUniform2iv(int location, int[] value)
Array version of:Uniform2iv
-
glUniform3fv
public static void glUniform3fv(int location, float[] value)
Array version of:Uniform3fv
-
glUniform3iv
public static void glUniform3iv(int location, int[] value)
Array version of:Uniform3iv
-
glUniform4fv
public static void glUniform4fv(int location, float[] value)
Array version of:Uniform4fv
-
glUniform4iv
public static void glUniform4iv(int location, int[] value)
Array version of:Uniform4iv
-
glUniformMatrix2fv
public static void glUniformMatrix2fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix2fv
-
glUniformMatrix3fv
public static void glUniformMatrix3fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix3fv
-
glUniformMatrix4fv
public static void glUniformMatrix4fv(int location, boolean transpose, float[] value)
Array version of:UniformMatrix4fv
-
glVertexAttrib1fv
public static void glVertexAttrib1fv(int index, float[] v)
Array version of:VertexAttrib1fv
-
glVertexAttrib2fv
public static void glVertexAttrib2fv(int index, float[] v)
Array version of:VertexAttrib2fv
-
glVertexAttrib3fv
public static void glVertexAttrib3fv(int index, float[] v)
Array version of:VertexAttrib3fv
-
glVertexAttrib4fv
public static void glVertexAttrib4fv(int index, float[] v)
Array version of:VertexAttrib4fv
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, short[] pointer)
short[] version of:VertexAttribPointer
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, int[] pointer)
int[] version of:VertexAttribPointer
-
glVertexAttribPointer
public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, float[] pointer)
float[] version of:VertexAttribPointer
-
-