Project

General

Profile

« Previous | Next » 

Revision e4330c89

Added by Leszek Koltunski almost 7 years ago

Change of API: move setting the EGL context back to the APP.

View differences:

src/main/java/org/distorted/examples/glow/GlowSurfaceView.java
19 19

  
20 20
package org.distorted.examples.glow;
21 21

  
22
import android.app.ActivityManager;
22 23
import android.content.Context;
24
import android.content.pm.ConfigurationInfo;
23 25
import android.opengl.GLSurfaceView;
24 26

  
25 27
///////////////////////////////////////////////////////////////////////////////////////////////////
......
29 31
    public GlowSurfaceView(Context context)
30 32
      {
31 33
      super(context);
34
      final ActivityManager activityManager     = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
35
      final ConfigurationInfo configurationInfo = activityManager.getDeviceConfigurationInfo();
36
      setEGLContextClientVersion( (configurationInfo.reqGlEsVersion>>16) >= 3 ? 3:2 );
32 37
      setRenderer(new GlowRenderer(this));
33 38
      }
34 39
}

Also available in: Unified diff