|
@@ -16,8 +16,11 @@ public final class Shader
|
|
{
|
|
{
|
|
private static int program = -1;
|
|
private static int program = -1;
|
|
|
|
|
|
- private static int width = 1024;
|
|
|
|
- private static int height = 620;
|
|
|
|
|
|
+ public final static int BASE_WIDTH = 1024;
|
|
|
|
+ public final static int BASE_HEIGHT = 620;
|
|
|
|
+
|
|
|
|
+ private static int width = 512;
|
|
|
|
+ private static int height = 310;
|
|
private static int scale = 2;
|
|
private static int scale = 2;
|
|
|
|
|
|
private static final List<Runnable> TASKS = new LinkedList<>();
|
|
private static final List<Runnable> TASKS = new LinkedList<>();
|
|
@@ -83,7 +86,7 @@ public final class Shader
|
|
unifMixColorLoc = glGetUniformLocation(program, "mixColor");
|
|
unifMixColorLoc = glGetUniformLocation(program, "mixColor");
|
|
setMixColor(0.0f, 0.0f, 0.0f, 0.0f);
|
|
setMixColor(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
|
|
- setViewPort(width, height);
|
|
|
|
|
|
+ setViewPort(BASE_WIDTH, BASE_HEIGHT);
|
|
initDone = true;
|
|
initDone = true;
|
|
}
|
|
}
|
|
|
|
|