Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: webrtc/api/java/android/org/webrtc/RendererCommon.java

Issue 1948473002: Android GlDrawer: Add frame size as argument to draw functions (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « webrtc/api/java/android/org/webrtc/GlRectDrawer.java ('k') | webrtc/api/java/android/org/webrtc/SurfaceViewRenderer.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698