Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
89772207
authored
Oct 19, 2022
by
Googler
Committed by
Rohit Singh
Oct 24, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Corrected ordering of javadoc params
PiperOrigin-RevId: 482231370
parent
9e1adee4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java
library/common/src/main/java/com/google/android/exoplayer2/util/GlUtil.java
View file @
89772207
...
@@ -550,10 +550,10 @@ public final class GlUtil {
...
@@ -550,10 +550,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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment