replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glShaderSource.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
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
);