consistent global names

This commit is contained in:
Hannes Janetzek 2013-06-28 04:22:09 +02:00
parent c62070a33e
commit 377cfa01af

View File

@ -16,12 +16,12 @@ package org.oscim.backend;
public class GLAdapter { public class GLAdapter {
public static GL20 INSTANCE; public static GL20 g;
public static boolean GDX_WEBGL_QUIRKS; public static boolean GDX_WEBGL_QUIRKS;
public static boolean NON_PREMUL_CANVAS; public static boolean NON_PREMUL_CANVAS;
public static GL20 get(){ public static GL20 get(){
return INSTANCE; return g;
} }
} }