Android
Iniziare con OpenGL ES 2.0+
Ricerca…
introduzione
Questo argomento riguarda la configurazione e l'uso di OpenGL ES 2.0+ su Android. OpenGL ES è lo standard per la grafica accelerata 2D e 3D su sistemi embedded, tra cui console, smartphone, elettrodomestici e veicoli.
Impostazione di GLSurfaceView e OpenGL ES 2.0+
Per utilizzare OpenGL ES nella tua applicazione devi aggiungerlo al manifest:
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
Crea il tuo GLSurfaceView esteso:
import static android.opengl.GLES20.*; // To use all OpenGL ES 2.0 methods and constants statically
public class MyGLSurfaceView extends GLSurfaceView {
public MyGLSurfaceView(Context context, AttributeSet attrs) {
super(context, attrs);
setEGLContextClientVersion(2); // OpenGL ES version 2.0
setRenderer(new MyRenderer());
setRenderMode(GLSurfaceView.RENDERMODE_CONTINUOUSLY);
}
public final class MyRenderer implements GLSurfaceView.Renderer{
public final void onSurfaceCreated(GL10 unused, EGLConfig config) {
// Your OpenGL ES init methods
glClearColor(1f, 0f, 0f, 1f);
}
public final void onSurfaceChanged(GL10 unused, int width, int height) {
glViewport(0, 0, width, height);
}
public final void onDrawFrame(GL10 unused) {
// Your OpenGL ES draw methods
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
}
}
}
Aggiungi MyGLSurfaceView
al tuo layout:
<com.example.app.MyGLSurfaceView
android:id="@+id/gles_renderer"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
Per utilizzare la versione più recente di OpenGL ES basta cambiare il numero di versione nel manifest, nell'importazione statica e modificare setEGLContextClientVersion
.
Compilare e collegare gli shaders GLSL-ES dal file di asset
La cartella Risorse è il luogo più comune in cui archiviare i file shader GLSL-ES. Per utilizzarli nell'applicazione OpenGL ES è necessario caricarli in una stringa. Questa funzione crea una stringa dal file di asset:
private String loadStringFromAssetFile(Context myContext, String filePath){
StringBuilder shaderSource = new StringBuilder();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(myContext.getAssets().open(filePath)));
String line;
while((line = reader.readLine()) != null){
shaderSource.append(line).append("\n");
}
reader.close();
return shaderSource.toString();
} catch (IOException e) {
e.printStackTrace();
Log.e(TAG, "Could not load shader file");
return null;
}
}
Ora è necessario creare una funzione che compila uno shader memorizzato in una puntura:
private int compileShader(int shader_type, String shaderString){
// This compiles the shader from the string
int shader = glCreateShader(shader_type);
glShaderSource(shader, shaderString);
glCompileShader(shader);
// This checks for for compilation errors
int[] compiled = new int[1];
glGetShaderiv(shader, GL_COMPILE_STATUS, compiled, 0);
if (compiled[0] == 0) {
String log = glGetShaderInfoLog(shader);
Log.e(TAG, "Shader compilation error: ");
Log.e(TAG, log);
}
return shader;
}
Ora puoi caricare, compilare e collegare i tuoi ombreggiatori:
// Load shaders from file
String vertexShaderString = loadStringFromAssetFile(context, "your_vertex_shader.glsl");
String fragmentShaderString = loadStringFromAssetFile(context, "your_fragment_shader.glsl");
// Compile shaders
int vertexShader = compileShader(GL_VERTEX_SHADER, vertexShaderString);
int fragmentShader = compileShader(GL_FRAGMENT_SHADER, fragmentShaderString);
// Link shaders and create shader program
int shaderProgram = glCreateProgram();
glAttachShader(shaderProgram , vertexShader);
glAttachShader(shaderProgram , fragmentShader);
glLinkProgram(shaderProgram);
// Check for linking errors:
int linkStatus[] = new int[1];
glGetProgramiv(shaderProgram, GL_LINK_STATUS, linkStatus, 0);
if (linkStatus[0] != GL_TRUE) {
String log = glGetProgramInfoLog(shaderProgram);
Log.e(TAG,"Could not link shader program: ");
Log.e(TAG, log);
}
Se non ci sono errori, il tuo programma shader è pronto per l'uso:
glUseProgram(shaderProgram);