Corrected ordering of javadoc params
PiperOrigin-RevId: 482231370 (cherry picked from commit 2c61dd9c95e64d0e137d1a4775cd23bc9c0ac42f)
This commit is contained in:
parent
b3cbebb036
commit
656753b809
@ -551,10 +551,10 @@ public final class GlUtil {
|
|||||||
* Binds the texture of the given type with default configuration of GL_LINEAR filtering and
|
* Binds the texture of the given type with default configuration of GL_LINEAR filtering and
|
||||||
* GL_CLAMP_TO_EDGE wrapping.
|
* GL_CLAMP_TO_EDGE wrapping.
|
||||||
*
|
*
|
||||||
* @param texId The texture identifier.
|
|
||||||
* @param textureTarget The target to which the texture is bound, e.g. {@link
|
* @param textureTarget The target to which the texture is bound, e.g. {@link
|
||||||
* GLES20#GL_TEXTURE_2D} for a two-dimensional texture or {@link
|
* GLES20#GL_TEXTURE_2D} for a two-dimensional texture or {@link
|
||||||
* GLES11Ext#GL_TEXTURE_EXTERNAL_OES} for an external texture.
|
* GLES11Ext#GL_TEXTURE_EXTERNAL_OES} for an external texture.
|
||||||
|
* @param texId The texture identifier.
|
||||||
*/
|
*/
|
||||||
public static void bindTexture(int textureTarget, int texId) throws GlException {
|
public static void bindTexture(int textureTarget, int texId) throws GlException {
|
||||||
GLES20.glBindTexture(textureTarget, texId);
|
GLES20.glBindTexture(textureTarget, texId);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user