replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glShaderSource.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
212 B
Java

// C function void glShaderSource ( GLuint shader, GLsizei count, const GLchar ** string, const GLint* length )
public static native void glShaderSource(
int shader,
String string
);