Skip to content

Commit

Permalink
Corrected ordering of javadoc params
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 482231370
  • Loading branch information
Googler authored and rohitjoins committed Oct 24, 2022
1 parent 9e1adee commit 8977220
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -550,10 +550,10 @@ private static int generateTexture() throws GlException {
* Binds the texture of the given type with default configuration of GL_LINEAR filtering and
* GL_CLAMP_TO_EDGE wrapping.
*
* @param texId The texture identifier.
* @param textureTarget The target to which the texture is bound, e.g. {@link
* GLES20#GL_TEXTURE_2D} for a two-dimensional texture or {@link
* GLES11Ext#GL_TEXTURE_EXTERNAL_OES} for an external texture.
* @param texId The texture identifier.
*/
public static void bindTexture(int textureTarget, int texId) throws GlException {
GLES20.glBindTexture(textureTarget, texId);
Expand Down

0 comments on commit 8977220

Please sign in to comment.