Xorg: make gl view client abstract

This commit is contained in:
zt515
2017-11-29 00:59:49 +08:00
parent c97df73aa3
commit 0fda37d443
8 changed files with 169 additions and 108 deletions

View File

@ -0,0 +1,13 @@
package io.neoterm;
import io.neoterm.xorg.NeoGLViewClient;
/**
* @author kiva
*/
public class NeoGLView extends DemoGLSurfaceView {
public NeoGLView(NeoGLViewClient client) {
super(client);
}
}