Index: webrtc/api/android/java/src/org/webrtc/GlTextureFrameBuffer.java |
diff --git a/webrtc/api/android/java/src/org/webrtc/GlTextureFrameBuffer.java b/webrtc/api/android/java/src/org/webrtc/GlTextureFrameBuffer.java |
index a456010c1c64b4e69366f3a1831a9ea9215fac3d..f1b13bee589655c5f2414617e993d03e9b3b38b5 100644 |
--- a/webrtc/api/android/java/src/org/webrtc/GlTextureFrameBuffer.java |
+++ b/webrtc/api/android/java/src/org/webrtc/GlTextureFrameBuffer.java |
@@ -52,8 +52,8 @@ public class GlTextureFrameBuffer { |
GlUtil.checkNoGLES2Error("Generate framebuffer"); |
// Attach the texture to the framebuffer as color attachment. |
- GLES20.glFramebufferTexture2D(GLES20.GL_FRAMEBUFFER, GLES20.GL_COLOR_ATTACHMENT0, |
- GLES20.GL_TEXTURE_2D, textureId, 0); |
+ GLES20.glFramebufferTexture2D( |
+ GLES20.GL_FRAMEBUFFER, GLES20.GL_COLOR_ATTACHMENT0, GLES20.GL_TEXTURE_2D, textureId, 0); |
GlUtil.checkNoGLES2Error("Attach texture to framebuffer"); |
// Restore normal framebuffer. |