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

Add a test program.
2009-11-19 16:34:55 +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
);