From 897722071e90f7b79527a75ac667a4e2143fbdfd Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 19 Oct 2022 16:53:37 +0000 Subject: [PATCH] Corrected ordering of javadoc params PiperOrigin-RevId: 482231370 --- .../main/java/com/google/android/exoplayer2/util/GlUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java b/library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java index c9763d81a0e..367e6c0ff82 100644 --- a/library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java +++ b/library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java @@ -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);