1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
| import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.opengl.GLES20; import android.opengl.GLUtils; import android.opengl.Matrix; import android.view.SurfaceHolder; import android.opengl.EGL14; import android.opengl.EGLConfig; import android.opengl.EGLContext; import android.opengl.EGLDisplay; import android.opengl.EGLSurface; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.FloatBuffer;
class RenderThread extends Thread { private SurfaceHolder surfaceHolder; private EGLDisplay eglDisplay; private EGLContext eglContext; private EGLSurface eglSurface; private int width, height; private volatile boolean running = true; private int program; private FloatBuffer vertexBuffer; private FloatBuffer textureBuffer; private int textureId; private final Context context; private float[] mvpMatrix = new float[16]; private float angle = 0.0f;
private final float[] rectCoords = { -0.5f, 0.5f, 0.0f, -0.5f, -0.5f, 0.0f, 0.5f, -0.5f, 0.0f, 0.5f, 0.5f, 0.0f };
private final float[] textureCoords = { 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f, 0.0f };
public RenderThread(SurfaceHolder holder, Context context) { this.surfaceHolder = holder; this.context = context; }
public void setSize(int width, int height) { this.width = width; this.height = height; float aspectRatio = (float) width / height; Matrix.setIdentityM(mvpMatrix, 0); Matrix.orthoM(mvpMatrix, 0, -aspectRatio, aspectRatio, -1.0f, 1.0f, -1.0f, 1.0f); }
public void stopRendering() { running = false; }
@Override public void run() { initEGL(); initGL(); while (running) { drawFrame(); EGL14.eglSwapBuffers(eglDisplay, eglSurface); angle += 1.0f; if (angle >= 360.0f) angle = 0.0f; } cleanup(); }
private void initEGL() { eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); int[] version = new int[2]; EGL14.eglInitialize(eglDisplay, version, 0, version, 1);
int[] configAttribs = { EGL14.EGL_RENDERABLE_TYPE, EGL14.EGL_OPENGL_ES2_BIT, EGL14.EGL_RED_SIZE, 8, EGL14.EGL_GREEN_SIZE, 8, EGL14.EGL_BLUE_SIZE, 8, EGL14.EGL_NONE }; EGLConfig[] configs = new EGLConfig[1]; int[] numConfigs = new int[1]; EGL14.eglChooseConfig(eglDisplay, configAttribs, 0, configs, 0, 1, numConfigs, 0);
int[] contextAttribs = { EGL14.EGL_CONTEXT_CLIENT_VERSION, 2, EGL14.EGL_NONE }; eglContext = EGL14.eglCreateContext(eglDisplay, configs[0], EGL14.EGL_NO_CONTEXT, contextAttribs, 0);
int[] surfaceAttribs = { EGL14.EGL_NONE }; eglSurface = EGL14.eglCreateWindowSurface(eglDisplay, configs[0], surfaceHolder, surfaceAttribs, 0); EGL14.eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext); }
private void initGL() { GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f); initShaders(); initBuffers(); initTexture(); }
private void drawFrame() { GLES20.glViewport(0, 0, width, height); GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT); drawTexturedRect(); }
private void initShaders() { String vertexShaderCode = "uniform mat4 uMVPMatrix;\n" + "attribute vec4 aPosition;\n" + "attribute vec2 aTexCoord;\n" + "varying vec2 vTexCoord;\n" + "void main() {\n" + " gl_Position = uMVPMatrix * aPosition;\n" + " vTexCoord = aTexCoord;\n" + "}";
String fragmentShaderCode = "precision mediump float;\n" + "varying vec2 vTexCoord;\n" + "uniform sampler2D uTexture;\n" + "void main() {\n" + " gl_FragColor = texture2D(uTexture, vTexCoord);\n" + "}";
int vertexShader = loadShader(GLES20.GL_VERTEX_SHADER, vertexShaderCode); int fragmentShader = loadShader(GLES20.GL_FRAGMENT_SHADER, fragmentShaderCode); program = GLES20.glCreateProgram(); GLES20.glAttachShader(program, vertexShader); GLES20.glAttachShader(program, fragmentShader); GLES20.glLinkProgram(program); }
private int loadShader(int type, String shaderCode) { int shader = GLES20.glCreateShader(type); GLES20.glShaderSource(shader, shaderCode); GLES20.glCompileShader(shader); return shader; }
private void initBuffers() { ByteBuffer bb = ByteBuffer.allocateDirect(rectCoords.length * 4); bb.order(ByteOrder.nativeOrder()); vertexBuffer = bb.asFloatBuffer(); vertexBuffer.put(rectCoords); vertexBuffer.position(0);
ByteBuffer tb = ByteBuffer.allocateDirect(textureCoords.length * 4); tb.order(ByteOrder.nativeOrder()); textureBuffer = tb.asFloatBuffer(); textureBuffer.put(textureCoords); textureBuffer.position(0); }
private void initTexture() { int[] textures = new int[1]; GLES20.glGenTextures(1, textures, 0); textureId = textures[0];
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId); GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR); GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_LINEAR); GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_CLAMP_TO_EDGE); GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_WRAP_T, GLES20.GL_CLAMP_TO_EDGE);
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), android.R.drawable.star_big_on); GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, bitmap, 0); bitmap.recycle(); }
private void drawTexturedRect() { GLES20.glUseProgram(program);
int mvpMatrixHandle = GLES20.glGetUniformLocation(program, "uMVPMatrix"); int positionHandle = GLES20.glGetAttribLocation(program, "aPosition"); int texCoordHandle = GLES20.glGetAttribLocation(program, "aTexCoord"); int textureHandle = GLES20.glGetUniformLocation(program, "uTexture");
GLES20.glEnableVertexAttribArray(positionHandle); GLES20.glEnableVertexAttribArray(texCoordHandle);
GLES20.glVertexAttribPointer(positionHandle, 3, GLES20.GL_FLOAT, false, 0, vertexBuffer); GLES20.glVertexAttribPointer(texCoordHandle, 2, GLES20.GL_FLOAT, false, 0, textureBuffer);
float[] rotationMatrix = new float[16]; Matrix.setIdentityM(rotationMatrix, 0); Matrix.rotateM(rotationMatrix, 0, angle, 0.0f, 0.0f, 1.0f); float[] finalMatrix = new float[16]; Matrix.multiplyMM(finalMatrix, 0, mvpMatrix, 0, rotationMatrix, 0); GLES20.glUniformMatrix4fv(mvpMatrixHandle, 1, false, finalMatrix, 0);
GLES20.glActiveTexture(GLES20.GL_TEXTURE0); GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId); GLES20.glUniform1i(textureHandle, 0);
GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 4);
GLES20.glDisableVertexAttribArray(positionHandle); GLES20.glDisableVertexAttribArray(texCoordHandle); }
private void cleanup() { EGL14.eglMakeCurrent(eglDisplay, EGL14.EGL_NO_SURFACE, EGL14.EGL_NO_SURFACE, EGL14.EGL_NO_CONTEXT); EGL14.eglDestroySurface(eglDisplay, eglSurface); EGL14.eglDestroyContext(eglDisplay, eglContext); EGL14.eglTerminate(eglDisplay); } }
|