Java Code Examples for javax.microedition.khronos.egl.EGL10#EGL_SUCCESS
The following examples show how to use
javax.microedition.khronos.egl.EGL10#EGL_SUCCESS .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GOSurfaceView.java From settlers-remake with MIT License | 6 votes |
@Override public EGLContext createContext(EGL10 arg0, EGLDisplay display, EGLConfig config) { EGLContext newCtx = null; int i = 0; int[][] attrs = new int[][] { {EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR, 2, EGL10.EGL_NONE}, //3.2 {EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR, 1, EGL10.EGL_NONE}, //3.1 {EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR, 3, EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR, 0, EGL10.EGL_NONE}, //3.0 {EGL14.EGL_CONTEXT_CLIENT_VERSION, 2, EGL10.EGL_NONE}, // highest available version {EGLExt.EGL_CONTEXT_MAJOR_VERSION_KHR, 1, EGLExt.EGL_CONTEXT_MINOR_VERSION_KHR, 1, EGL10.EGL_NONE}, // 1.1 {EGL14.EGL_CONTEXT_CLIENT_VERSION, 1, EGL10.EGL_NONE}, // 1.x {EGL10.EGL_NONE}, // lowest available version }; while(newCtx == null && attrs.length >= i) { int[] attributes = attrs[i]; newCtx = arg0.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT, attributes); i++; if(newCtx != null && arg0.eglGetError() != EGL10.EGL_SUCCESS) { newCtx = null; } } return newCtx; }
Example 2
Source File: GLTextureView.java From ZGDanmaku with Apache License 2.0 | 5 votes |
/** * Display the current render surface. * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (! mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 3
Source File: EglHelper.java From android-openGL-canvas with Apache License 2.0 | 5 votes |
/** * Display the current render surface. * * @return the EGL error code from eglSwapBuffers. */ @Override public int swap() { if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 4
Source File: GLTextureView.java From EZFilter with MIT License | 5 votes |
/** * Display the current render surface. * * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 5
Source File: GLSurfaceView.java From EZFilter with MIT License | 5 votes |
/** * Display the current render surface. * * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 6
Source File: ApplicationGLView.java From cordova-plugin-vuforia with MIT License | 5 votes |
private static void checkEglError(String prompt, EGL10 egl) { int error; while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { Log.e(LOGTAG, String.format("%s: EGL error: 0x%x", prompt, error)); } }
Example 7
Source File: PixelBuffer.java From DeviceConnect-Android with MIT License | 5 votes |
private void checkEGLError(EGL10 egl) { int error = egl.eglGetError(); if (BuildConfig.DEBUG) { if (error == EGL10.EGL_SUCCESS) { mLogger.info("EGL SUCCESS."); } else { mLogger.severe("EGL Error: " + error); } } }
Example 8
Source File: ViEAndroidGLES20.java From LiveVideo with Apache License 2.0 | 5 votes |
private void printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) { int[] attributes = { EGL10.EGL_BUFFER_SIZE, EGL10.EGL_ALPHA_SIZE, EGL10.EGL_BLUE_SIZE, EGL10.EGL_GREEN_SIZE, EGL10.EGL_RED_SIZE, EGL10.EGL_DEPTH_SIZE, EGL10.EGL_STENCIL_SIZE, EGL10.EGL_CONFIG_CAVEAT, EGL10.EGL_CONFIG_ID, EGL10.EGL_LEVEL, EGL10.EGL_MAX_PBUFFER_HEIGHT, EGL10.EGL_MAX_PBUFFER_PIXELS, EGL10.EGL_MAX_PBUFFER_WIDTH, EGL10.EGL_NATIVE_RENDERABLE, EGL10.EGL_NATIVE_VISUAL_ID, EGL10.EGL_NATIVE_VISUAL_TYPE, 0x3030, // EGL10.EGL_PRESERVED_RESOURCES, EGL10.EGL_SAMPLES, EGL10.EGL_SAMPLE_BUFFERS, EGL10.EGL_SURFACE_TYPE, EGL10.EGL_TRANSPARENT_TYPE, EGL10.EGL_TRANSPARENT_RED_VALUE, EGL10.EGL_TRANSPARENT_GREEN_VALUE, EGL10.EGL_TRANSPARENT_BLUE_VALUE, 0x3039, // EGL10.EGL_BIND_TO_TEXTURE_RGB, 0x303A, // EGL10.EGL_BIND_TO_TEXTURE_RGBA, 0x303B, // EGL10.EGL_MIN_SWAP_INTERVAL, 0x303C, // EGL10.EGL_MAX_SWAP_INTERVAL, EGL10.EGL_LUMINANCE_SIZE, EGL10.EGL_ALPHA_MASK_SIZE, EGL10.EGL_COLOR_BUFFER_TYPE, EGL10.EGL_RENDERABLE_TYPE, 0x3042 // EGL10.EGL_CONFORMANT }; String[] names = { "EGL_BUFFER_SIZE", "EGL_ALPHA_SIZE", "EGL_BLUE_SIZE", "EGL_GREEN_SIZE", "EGL_RED_SIZE", "EGL_DEPTH_SIZE", "EGL_STENCIL_SIZE", "EGL_CONFIG_CAVEAT", "EGL_CONFIG_ID", "EGL_LEVEL", "EGL_MAX_PBUFFER_HEIGHT", "EGL_MAX_PBUFFER_PIXELS", "EGL_MAX_PBUFFER_WIDTH", "EGL_NATIVE_RENDERABLE", "EGL_NATIVE_VISUAL_ID", "EGL_NATIVE_VISUAL_TYPE", "EGL_PRESERVED_RESOURCES", "EGL_SAMPLES", "EGL_SAMPLE_BUFFERS", "EGL_SURFACE_TYPE", "EGL_TRANSPARENT_TYPE", "EGL_TRANSPARENT_RED_VALUE", "EGL_TRANSPARENT_GREEN_VALUE", "EGL_TRANSPARENT_BLUE_VALUE", "EGL_BIND_TO_TEXTURE_RGB", "EGL_BIND_TO_TEXTURE_RGBA", "EGL_MIN_SWAP_INTERVAL", "EGL_MAX_SWAP_INTERVAL", "EGL_LUMINANCE_SIZE", "EGL_ALPHA_MASK_SIZE", "EGL_COLOR_BUFFER_TYPE", "EGL_RENDERABLE_TYPE", "EGL_CONFORMANT" }; int[] value = new int[1]; for (int i = 0; i < attributes.length; i++) { int attribute = attributes[i]; String name = names[i]; if (egl.eglGetConfigAttrib(display, config, attribute, value)) { Log.w(TAG, String.format(" %s: %d\n", name, value[0])); } else { Log.w(TAG, String.format(" %s: failed\n", name)); while (egl.eglGetError() != EGL10.EGL_SUCCESS) ; } } }
Example 9
Source File: OutputSurface.java From mollyim-android with GNU General Public License v3.0 | 5 votes |
/** * Checks for EGL errors. */ private void checkEglError(String msg) throws TranscodingException { boolean failed = false; int error; while ((error = mEGL.eglGetError()) != EGL10.EGL_SUCCESS) { Log.e(TAG, msg + ": EGL error: 0x" + Integer.toHexString(error)); failed = true; } if (failed) { throw new TranscodingException("EGL error encountered (see log)"); } }
Example 10
Source File: ExtractMpegFramesTest.java From Android-MediaCodec-Examples with Apache License 2.0 | 5 votes |
/** * Checks for EGL errors. */ private void checkEglError(String msg) { int error; if ((error = mEgl.eglGetError()) != EGL10.EGL_SUCCESS) { throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error)); } }
Example 11
Source File: OutputSurface.java From SimpleVideoEditor with Apache License 2.0 | 5 votes |
/** * Che cks for EGL errors. */ private void checkEglError(String msg) { boolean failed = false; int error; while ((error = mEGL.eglGetError()) != EGL10.EGL_SUCCESS) { Log.e(TAG, msg + ": EGL error: 0x" + Integer.toHexString(error)); failed = true; } if (failed) { throw new RuntimeException("EGL error encountered (see log)"); } }
Example 12
Source File: GLTextureView.java From MD360Player4Android with Apache License 2.0 | 5 votes |
/** * Display the current render surface. * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (! mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 13
Source File: BlockingGLTextureView.java From TurboLauncher with Apache License 2.0 | 5 votes |
/** * Display the current render surface. * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 14
Source File: GLTextureView.java From PhotoMovie with Apache License 2.0 | 5 votes |
/** * Display the current render surface. * * @return the EGL error code from eglSwapBuffers. */ public int swap() { if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) { return mEgl.eglGetError(); } return EGL10.EGL_SUCCESS; }
Example 15
Source File: OutputSurface.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
private void checkEglError(String msg) { if (mEGL.eglGetError() != EGL10.EGL_SUCCESS) { throw new RuntimeException("EGL error encountered (see log)"); } }
Example 16
Source File: OutputSurface.java From talk-android with MIT License | 4 votes |
private void checkEglError(String msg) { if (mEGL.eglGetError() != EGL10.EGL_SUCCESS) { throw new RuntimeException("EGL error encountered (see log)"); } }
Example 17
Source File: ViEAndroidGLES20.java From CSipSimple with GNU General Public License v3.0 | 4 votes |
private static void checkEglError(String prompt, EGL10 egl) { int error; while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error)); } }
Example 18
Source File: OutputSurface.java From Telegram with GNU General Public License v2.0 | 4 votes |
private void checkEglError(String msg) { if (mEGL.eglGetError() != EGL10.EGL_SUCCESS) { throw new RuntimeException("EGL error encountered (see log)"); } }
Example 19
Source File: OutputSurface.java From VideoCompressor with Apache License 2.0 | 4 votes |
private void checkEglError(String msg) { if (mEGL.eglGetError() != EGL10.EGL_SUCCESS) { throw new RuntimeException("EGL error encountered (see log)"); } }
Example 20
Source File: OutputSurface.java From TelePlus-Android with GNU General Public License v2.0 | 4 votes |
private void checkEglError(String msg) { if (mEGL.eglGetError() != EGL10.EGL_SUCCESS) { throw new RuntimeException("EGL error encountered (see log)"); } }