| Index: webrtc/api/androidtests/src/org/webrtc/SurfaceTextureHelperTest.java
|
| diff --git a/webrtc/api/androidtests/src/org/webrtc/SurfaceTextureHelperTest.java b/webrtc/api/androidtests/src/org/webrtc/SurfaceTextureHelperTest.java
|
| index a2a33917098c673db95fb545831e24366a560886..c5b9ec430e83aa7e8cea92505bc87ba0baa8674b 100644
|
| --- a/webrtc/api/androidtests/src/org/webrtc/SurfaceTextureHelperTest.java
|
| +++ b/webrtc/api/androidtests/src/org/webrtc/SurfaceTextureHelperTest.java
|
| @@ -131,8 +131,7 @@
|
| // Wait for an OES texture to arrive and draw it onto the pixel buffer.
|
| listener.waitForNewFrame();
|
| eglBase.makeCurrent();
|
| - drawer.drawOes(listener.oesTextureId, listener.transformMatrix, width, height,
|
| - 0, 0, width, height);
|
| + drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, width, height);
|
|
|
| surfaceTextureHelper.returnTextureFrame();
|
|
|
| @@ -203,8 +202,7 @@
|
| // Draw the pending texture frame onto the pixel buffer.
|
| eglBase.makeCurrent();
|
| final GlRectDrawer drawer = new GlRectDrawer();
|
| - drawer.drawOes(listener.oesTextureId, listener.transformMatrix, width, height,
|
| - 0, 0, width, height);
|
| + drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, width, height);
|
| drawer.release();
|
|
|
| // Download the pixels in the pixel buffer as RGBA. Not all platforms support RGB, e.g. Nexus 9.
|
|
|