replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glTransformFeedbackVaryings.java
Jesse Hall 2fc72d1c02 opengl: Fix whitespace in Java templates
Someone fixed these in the generated code, so re-generating even with
no other changes caused diffs. Better to just fix it at the source.

Bug: 15028495
Change-Id: I248f9796d4e3d904c4c0dc15be5f8de231df7285
2014-05-18 15:34:04 -07:00

9 lines
267 B
Java

// C function void glTransformFeedbackVaryings ( GLuint program, GLsizei count, const GLchar *varyings, GLenum bufferMode )
public static native void glTransformFeedbackVaryings(
int program,
String[] varyings,
int bufferMode
);