replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glGetProgramInfoLog.java
Jack Palevich b3a5352b96 Add a Java API for OpenGL ES 2.0.
Currently this API is hidden.

Add a test program.
2009-12-09 16:34:33 +08:00

7 lines
206 B
Java

// C function void glGetProgramInfoLog( GLuint program, GLsizei maxLength, GLsizei * length,
// GLchar * infoLog);
public static native String glGetProgramInfoLog(
int program
);