Back to project page model-explorer.
The source code is released under:
Apache License
If you think the Android project model-explorer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.etaoin.myopengltest.util.gl; /*from ww w .j a va 2 s. c o m*/ public abstract class MyGenericGLES20 implements MyGLES20 { @Override public int loadShader(int type, String shaderCode) { int shader = glCreateShader(type); glShaderSource(shader, shaderCode); glCompileShader(shader); return shader; } }