| Index: webrtc/api/java/android/org/webrtc/EglBase10.java
|
| diff --git a/webrtc/api/java/android/org/webrtc/EglBase10.java b/webrtc/api/java/android/org/webrtc/EglBase10.java
|
| index 6e20119e1bc80abd2d23bfd1a649331b8fdd0582..fd3644f77acac921b33602240d9ec3441335c29f 100644
|
| --- a/webrtc/api/java/android/org/webrtc/EglBase10.java
|
| +++ b/webrtc/api/java/android/org/webrtc/EglBase10.java
|
| @@ -158,7 +158,8 @@ final class EglBase10 extends EglBase {
|
| int[] surfaceAttribs = {EGL10.EGL_WIDTH, width, EGL10.EGL_HEIGHT, height, EGL10.EGL_NONE};
|
| eglSurface = egl.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs);
|
| if (eglSurface == EGL10.EGL_NO_SURFACE) {
|
| - throw new RuntimeException("Failed to create pixel buffer surface");
|
| + throw new RuntimeException(
|
| + "Failed to create pixel buffer surface with size: " + width + "x" + height);
|
| }
|
| }
|
|
|
|
|