Android: disable EGL14 option, begin restructure
This commit is contained in:
parent
ce447e220c
commit
acbfc2c5fd
|
@ -183,15 +183,6 @@ public class GL2JNIView extends GLSurfaceView
|
|||
// is interpreted as any 32-bit surface with alpha by SurfaceFlinger.
|
||||
if(translucent) this.getHolder().setFormat(PixelFormat.TRANSLUCENT);
|
||||
|
||||
if (prefs.getBoolean(Config.pref_egl14, false)) {
|
||||
setEGLContextFactory(new GLCFactory14.ContextFactory());
|
||||
setEGLConfigChooser(
|
||||
translucent?
|
||||
new GLCFactory14.ConfigChooser(8, 8, 8, 8, depth, stencil)
|
||||
: new GLCFactory14.ConfigChooser(5, 6, 5, 0, depth, stencil)
|
||||
);
|
||||
GLES20.glEnable(GLES20.GL_DEPTH_TEST);
|
||||
} else {
|
||||
// Setup the context factory for 2.0 rendering.
|
||||
// See ContextFactory class definition below
|
||||
setEGLContextFactory(new GLCFactory.ContextFactory());
|
||||
|
@ -205,7 +196,6 @@ public class GL2JNIView extends GLSurfaceView
|
|||
new GLCFactory.ConfigChooser(8, 8, 8, 8, depth, stencil)
|
||||
: new GLCFactory.ConfigChooser(5, 6, 5, 0, depth, stencil)
|
||||
);
|
||||
}
|
||||
|
||||
// Set the renderer responsible for frame rendering
|
||||
setRenderer(rend=new Renderer(this));
|
||||
|
|
|
@ -2,17 +2,19 @@ package com.reicast.emulator.emu;
|
|||
|
||||
import android.annotation.TargetApi;
|
||||
import android.opengl.EGL14;
|
||||
import android.opengl.EGLConfig;
|
||||
import android.opengl.EGLContext;
|
||||
import android.opengl.EGLDisplay;
|
||||
import android.opengl.EGLExt;
|
||||
import android.opengl.GLSurfaceView;
|
||||
import android.opengl.EGLSurface;
|
||||
import android.opengl.GLES20;
|
||||
import android.os.Build;
|
||||
import android.util.Log;
|
||||
import android.view.Window;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
import javax.microedition.khronos.egl.EGL10;
|
||||
import javax.microedition.khronos.egl.EGLConfig;
|
||||
import javax.microedition.khronos.egl.EGLContext;
|
||||
import javax.microedition.khronos.egl.EGLDisplay;
|
||||
|
||||
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
|
||||
public class GLCFactory14 {
|
||||
|
@ -25,33 +27,52 @@ public class GLCFactory14 {
|
|||
private int EGL_DEPTH_ENCODING_NV = 0x30E2;
|
||||
private int EGL_DEPTH_ENCODING_NONLINEAR_NV = 0x30E3;
|
||||
|
||||
public static class ContextFactory implements GLSurfaceView.EGLContextFactory
|
||||
{
|
||||
private static final int EGL_CONTEXT_CLIENT_VERSION = 0x3098;
|
||||
|
||||
public EGLContext createContext(EGL10 egl,EGLDisplay display,EGLConfig eglConfig)
|
||||
private void configureWindow() {
|
||||
GLES20.glEnable(GLES20.GL_DEPTH_TEST);
|
||||
}
|
||||
|
||||
public EGLDisplay getDisplay() {
|
||||
EGLDisplay eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY);
|
||||
|
||||
if (eglDisplay == EGL14.EGL_NO_DISPLAY) {
|
||||
throw new RuntimeException("eglGetDisplay failed");
|
||||
}
|
||||
|
||||
int[] major = new int[1];
|
||||
int[] minor = new int[1];
|
||||
if (!EGL14.eglInitialize(eglDisplay, major, 0, minor, 0)) {
|
||||
throw new RuntimeException("eglInitialize failed");
|
||||
}
|
||||
if (minor[0] < 4) {
|
||||
throw new RuntimeException("EGL 1.4 required");
|
||||
}
|
||||
return eglDisplay;
|
||||
}
|
||||
|
||||
public void terminate(EGLDisplay display) {
|
||||
EGL14.eglTerminate(display);
|
||||
}
|
||||
|
||||
public EGLContext createContext(EGLDisplay display, EGLConfig eglConfig)
|
||||
{
|
||||
EGLContext context = EGL10.EGL_NO_CONTEXT;
|
||||
EGLContext context = EGL14.EGL_NO_CONTEXT;
|
||||
for ( int clientVersion = 3; clientVersion >= 2; clientVersion-- ) {
|
||||
int[] attrList = { EGL_CONTEXT_CLIENT_VERSION, clientVersion, EGL14.EGL_NONE };
|
||||
|
||||
LOGI("Creating OpenGL ES " + clientVersion + " context");
|
||||
|
||||
checkEglError("Before eglCreateContext",egl);
|
||||
context = egl.eglCreateContext(display,eglConfig,EGL10.EGL_NO_CONTEXT,attrList);
|
||||
checkEglError("After eglCreateContext",egl);
|
||||
if (context != EGL10.EGL_NO_CONTEXT) {
|
||||
context = EGL14.eglCreateContext(display, eglConfig, EGL14.EGL_NO_CONTEXT, attrList, 0);
|
||||
if (context != EGL14.EGL_NO_CONTEXT) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return(context);
|
||||
}
|
||||
|
||||
public void destroyContext(EGL10 egl,EGLDisplay display,EGLContext context)
|
||||
{
|
||||
LOGI("Destroying OpenGL ES X context");
|
||||
egl.eglDestroyContext(display,context);
|
||||
}
|
||||
public void destroyContext(EGLDisplay display, EGLContext context) {
|
||||
EGL14.eglDestroyContext(display, context);
|
||||
}
|
||||
|
||||
private static void checkEglError(String prompt,EGL10 egl)
|
||||
|
@ -62,8 +83,6 @@ public class GLCFactory14 {
|
|||
LOGE(String.format(Locale.getDefault(), "%s: EGL error: 0x%x",prompt,error));
|
||||
}
|
||||
|
||||
public static class ConfigChooser implements GLSurfaceView.EGLConfigChooser
|
||||
{
|
||||
// Subclasses can adjust these values:
|
||||
protected int mRedSize;
|
||||
protected int mGreenSize;
|
||||
|
@ -73,17 +92,7 @@ public class GLCFactory14 {
|
|||
protected int mStencilSize;
|
||||
private int[] mValue = new int[1];
|
||||
|
||||
public ConfigChooser(int r,int g,int b,int a,int depth,int stencil)
|
||||
{
|
||||
mRedSize = r;
|
||||
mGreenSize = g;
|
||||
mBlueSize = b;
|
||||
mAlphaSize = a;
|
||||
mDepthSize = depth;
|
||||
mStencilSize = stencil;
|
||||
}
|
||||
|
||||
public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
|
||||
public EGLConfig chooseConfig(EGLDisplay display) {
|
||||
mValue = new int[1];
|
||||
|
||||
int glAPIToTry = EGLExt.EGL_OPENGL_ES3_BIT_KHR;
|
||||
|
@ -103,21 +112,21 @@ public class GLCFactory14 {
|
|||
glAPIToTry = EGL10.EGL_NONE;
|
||||
}
|
||||
|
||||
// This EGL config specification is used to specify 2.0 rendering.
|
||||
// We use a minimum size of 4 bits for red/green/blue, but will
|
||||
// This EGL config specification is used to specify 3.0 rendering.
|
||||
// We use a minimum size of 8 bits for red/green/blue, but will
|
||||
// perform actual matching in chooseConfig() below.
|
||||
configSpec = new int[] {
|
||||
EGL14.EGL_RED_SIZE, 4,
|
||||
EGL14.EGL_GREEN_SIZE, 4,
|
||||
EGL14.EGL_BLUE_SIZE, 4,
|
||||
EGL14.EGL_RED_SIZE, 8,
|
||||
EGL14.EGL_GREEN_SIZE, 8,
|
||||
EGL14.EGL_BLUE_SIZE, 8,
|
||||
EGL14.EGL_RENDERABLE_TYPE, renderableType,
|
||||
EGL14.EGL_DEPTH_SIZE, 16,
|
||||
EGL14.EGL_NONE
|
||||
};
|
||||
|
||||
if (!egl.eglChooseConfig(display, configSpec, null, 0, mValue)) {
|
||||
if (!EGL14.eglChooseConfig(display, configSpec, 0,null, 0, 0, mValue, 0)) {
|
||||
configSpec[9] = 16;
|
||||
if (!egl.eglChooseConfig(display, configSpec, null, 0, mValue)) {
|
||||
if (!EGL14.eglChooseConfig(display, configSpec, 0,null, 0, 0, mValue, 0)) {
|
||||
throw new IllegalArgumentException("Could not get context count");
|
||||
}
|
||||
}
|
||||
|
@ -132,34 +141,28 @@ public class GLCFactory14 {
|
|||
EGLConfig[] configs = new EGLConfig[mValue[0]];
|
||||
if (GL2JNIView.DEBUG)
|
||||
LOGW(String.format(Locale.getDefault(), "%d configurations", configs.length));
|
||||
if (!egl.eglChooseConfig(display, configSpec, configs, mValue[0], mValue)) {
|
||||
if (!EGL14.eglChooseConfig(display, configSpec, 0, configs,0, mValue[0], mValue, 0)) {
|
||||
throw new IllegalArgumentException("Could not get config data");
|
||||
}
|
||||
|
||||
for (int i = 0; i < configs.length; ++i) {
|
||||
EGLConfig config = configs[i];
|
||||
int d = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_DEPTH_SIZE, 0);
|
||||
int s = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_STENCIL_SIZE, 0);
|
||||
int d = findConfigAttrib(display, config, EGL14.EGL_DEPTH_SIZE, 0);
|
||||
int s = findConfigAttrib(display, config, EGL14.EGL_STENCIL_SIZE, 0);
|
||||
|
||||
// We need at least mDepthSize and mStencilSize bits
|
||||
if (d >= mDepthSize || s >= mStencilSize) {
|
||||
// We want an *exact* match for red/green/blue/alpha
|
||||
int r = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_RED_SIZE, 0);
|
||||
int g = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_GREEN_SIZE, 0);
|
||||
int b = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_BLUE_SIZE, 0);
|
||||
int a = findConfigAttrib(egl, display, config,
|
||||
EGL14.EGL_ALPHA_SIZE, 0);
|
||||
int r = findConfigAttrib(display, config, EGL14.EGL_RED_SIZE, 0);
|
||||
int g = findConfigAttrib(display, config, EGL14.EGL_GREEN_SIZE, 0);
|
||||
int b = findConfigAttrib(display, config, EGL14.EGL_BLUE_SIZE, 0);
|
||||
int a = findConfigAttrib(display, config, EGL14.EGL_ALPHA_SIZE, 0);
|
||||
|
||||
if (r == mRedSize && g == mGreenSize && b == mBlueSize
|
||||
&& a == mAlphaSize)
|
||||
if (GL2JNIView.DEBUG) {
|
||||
LOGW(String.format("Configuration %d:", i));
|
||||
printConfig(egl, display, configs[i]);
|
||||
printConfig(display, configs[i]);
|
||||
}
|
||||
return config;
|
||||
}
|
||||
|
@ -168,12 +171,15 @@ public class GLCFactory14 {
|
|||
throw new IllegalArgumentException("Could not find suitable EGL config");
|
||||
}
|
||||
|
||||
private int findConfigAttrib(EGL10 egl,EGLDisplay display,EGLConfig config,int attribute,int defaultValue)
|
||||
{
|
||||
return(egl.eglGetConfigAttrib(display,config,attribute,mValue)? mValue[0] : defaultValue);
|
||||
private int findConfigAttrib(EGLDisplay display, EGLConfig config, int defaultValue, int attribute) {
|
||||
int[] value = new int[1];
|
||||
if (EGL14.eglGetConfigAttrib(display, config, attribute, value, 0)) {
|
||||
return value[0];
|
||||
}
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
private void printConfig(EGL10 egl,EGLDisplay display,EGLConfig config)
|
||||
private void printConfig(EGLDisplay display, EGLConfig config)
|
||||
{
|
||||
final int[] attributes =
|
||||
{
|
||||
|
@ -252,10 +258,18 @@ public class GLCFactory14 {
|
|||
int[] value = new int[1];
|
||||
|
||||
for(int i=0 ; i<attributes.length ; i++)
|
||||
if(egl.eglGetConfigAttrib(display,config,attributes[i],value))
|
||||
if(EGL14.eglGetConfigAttrib(display, config, attributes[i], value,0))
|
||||
LOGI(String.format(Locale.getDefault(), " %s: %d\n",names[i],value[0]));
|
||||
else
|
||||
while(egl.eglGetError()!=EGL14.EGL_SUCCESS);
|
||||
while(EGL14.eglGetError() != EGL14.EGL_SUCCESS);
|
||||
}
|
||||
|
||||
public EGLSurface createWindowSurface(EGLDisplay display, EGLConfig config, Window window) {
|
||||
EGLSurface eglSurface = EGL14.eglCreateWindowSurface(display, config, window, null, 0);
|
||||
return eglSurface;
|
||||
}
|
||||
|
||||
public void destroySurface(EGLDisplay display, EGLSurface window) {
|
||||
EGL14.eglDestroySurface(display, window);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue