[DEV] move SDK_VERSION from EwolConstants into EwolSurfaceViewGL

This commit is contained in:
Keidan (K. Billonneau) 2013-07-10 18:43:33 +02:00
parent dcf8549f5e
commit 0c78b84728
2 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,6 @@ package org.ewol;
public interface EwolConstants {
public static final int SDK_VERSION = android.os.Build.VERSION.SDK_INT;
public static final int NATIVE_AUDIO_BUFFER_SIZE = 512;
public static final int EWOL_SYSTEM_KEY_VOLUME_UP = 1;
public static final int EWOL_SYSTEM_KEY_VOLUME_DOWN = 2;

View File

@ -43,6 +43,7 @@ import static org.ewol.Ewol.EWOL;
*
*/
public class EwolSurfaceViewGL extends GLSurfaceView implements EwolConstants {
public static final int SDK_VERSION = android.os.Build.VERSION.SDK_INT;
private EwolRendererGL m_ewolDrawer = null;
private boolean inputDown1 = false;
private boolean inputDown2 = false;