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 d95b69f94c0ca0e50d920e61dd4728cddada397b..55547eb2087475bb819dacf929b5d51dc4397595 100644 |
--- a/webrtc/api/java/android/org/webrtc/RendererCommon.java |
+++ b/webrtc/api/java/android/org/webrtc/RendererCommon.java |
@@ -40,9 +40,12 @@ public class RendererCommon { |
* 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 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); |
+ 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); |
/** |
* Release all GL resources. This needs to be done manually, otherwise resources may leak. |