| Index: webrtc/api/java/android/org/webrtc/RendererCommon.java
|
| diff --git a/webrtc/api/java/android/org/webrtc/RendererCommon.java b/webrtc/api/java/android/org/webrtc/RendererCommon.java
|
| index 55547eb2087475bb819dacf929b5d51dc4397595..d95b69f94c0ca0e50d920e61dd4728cddada397b 100644
|
| --- a/webrtc/api/java/android/org/webrtc/RendererCommon.java
|
| +++ b/webrtc/api/java/android/org/webrtc/RendererCommon.java
|
| @@ -40,12 +40,9 @@
|
| * implied by the current EGL context of the calling thread and requires no explicit argument.
|
| * The coordinates specify the viewport location on the surface target.
|
| */
|
| - void drawOes(int oesTextureId, float[] texMatrix, int frameWidth, int frameHeight,
|
| - int viewportX, int viewportY, int viewportWidth, int viewportHeight);
|
| - void drawRgb(int textureId, float[] texMatrix, int frameWidth, int frameHeight,
|
| - int viewportX, int viewportY, int viewportWidth, int viewportHeight);
|
| - void drawYuv(int[] yuvTextures, float[] texMatrix, int frameWidth, int frameHeight,
|
| - int viewportX, int viewportY, int viewportWidth, int viewportHeight);
|
| + void drawOes(int oesTextureId, float[] texMatrix, int x, int y, int width, int height);
|
| + void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height);
|
| + void drawYuv(int[] yuvTextures, float[] texMatrix, int x, int y, int width, int height);
|
|
|
| /**
|
| * Release all GL resources. This needs to be done manually, otherwise resources may leak.
|
|
|