8 lines
214 B
Java
8 lines
214 B
Java
// C function GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings )
|
|
|
|
public static native int glCreateShaderProgramv(
|
|
int type,
|
|
String[] strings
|
|
);
|
|
|