OpenGL Android

package com.example;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.opengl.GLES30;
import android.opengl.GLSurfaceView;
import android.opengl.Matrix;
import android.os.Bundle;
import android.view.MotionEvent;

import com.example.test_webview_demo.R;

import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.IntBuffer;

import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;

import androidx.annotation.Nullable;

public class OpenGLActivity extends Activity {

  int sumX;
  int sunY;
  float x = 0;
  float y = 0;
  @Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    final GLSurfaceView glSurfaceView = new GLSurfaceView(this) {
      @Override
      public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()){
          case MotionEvent.ACTION_DOWN:
            x = event.getX();
            y = event.getY();
            break;
          case MotionEvent.ACTION_MOVE:
            float mX = event.getX();
            float mY = event.getY();
            sumX += x - mX;
            sunY += mY - y;
            x = mX;
            y = mY;
            break;
        }
        return true;
      }
    };
    glSurfaceView.setEGLContextClientVersion(3);
    glSurfaceView.setRenderer(
        new GLSurfaceView.Renderer() {
          int programId = -1;
          int vbo;
          int vao;
          @Override
          public void onSurfaceCreated(GL10 gl, EGLConfig config) {
            GLES30.glClearColor(1, 0, 0, 1);
            final int vShader = GLES30.glCreateShader(GLES30.GL_VERTEX_SHADER);
            GLES30.glShaderSource(
                vShader,
                "#version 320 es\n"
                    + "layout(location = 0) in vec3 Position;\n"
                    + "layout(location = 1) in vec2 textureCoordinate;\n"
                    + "out vec2 textureCoord;\n"
                    + "uniform mat4 modelMatrix;\n"
                    + "uniform mat4 orthoMatrix;\n"
                    + "uniform mat4 viewMatrix;\n"
                    + "void main()\n"
                    + "{\n"
                    + "gl_Position = orthoMatrix * viewMatrix * modelMatrix * vec4(Position,1"
                    + ".0);\n"
                    + "textureCoord = textureCoordinate;\n"
                    + "}\n");
            GLES30.glCompileShader(vShader);
            IntBuffer intBuffer = IntBuffer.allocate(1);
            GLES30.glGetShaderiv(vShader, GLES30.GL_COMPILE_STATUS, intBuffer);
            if (GLES30.GL_TRUE != intBuffer.get()) {
              System.out.println("GL_VERTEX_SHADER-->" + GLES30.glGetShaderInfoLog(vShader));
              return;
            }
            final int fShader = GLES30.glCreateShader(GLES30.GL_FRAGMENT_SHADER);
            GLES30.glShaderSource(
                fShader,
                "#version 320 es\n"
                    + "precision mediump float;\n"
                    + "uniform sampler2D texture0;\n"
                    + "in vec2 textureCoord;\n"
                    + "out vec4 fragColor;\n"
                    + "void main()\n"
                    + "{\n"
                    + "fragColor = texture(texture0, vec2(textureCoord.x,1.0 - textureCoord.y));\n"
                    + "}\n");
            GLES30.glCompileShader(fShader);
            intBuffer.clear();
            GLES30.glGetShaderiv(fShader, GLES30.GL_COMPILE_STATUS, intBuffer);
            if (GLES30.GL_TRUE != intBuffer.get()) {
              System.out.println("GL_FRAGMENT_SHADER-->" + GLES30.glGetShaderInfoLog(fShader));
              return;
            }
            this.programId = GLES30.glCreateProgram();
            GLES30.glAttachShader(programId, vShader);
            GLES30.glAttachShader(programId, fShader);
            GLES30.glLinkProgram(programId);
            intBuffer.clear();
            GLES30.glGetProgramiv(programId, GLES30.GL_LINK_STATUS, intBuffer);
            if (GLES30.GL_TRUE != intBuffer.get()) {
              System.out.println("GL_LINK_STATUS--->" + GLES30.glGetProgramInfoLog(programId));
              return;
            }
            GLES30.glDeleteShader(vShader);
            GLES30.glDeleteShader(fShader);
            float triangleCoords[] = {
              -0.5f, -0.5f, 1.0f, 0, 0, -0.5f, 0.5f, 1.0f, 0, 1, 0.5f, 0.5f, 1.0f, 1, 1, 0.5f, 0.5f,
              1.0f, 1, 1, 0.5f, -0.5f, 1.0f, 1, 0, -0.5f, -0.5f, 1.0f, 0, 0
            };
            ByteBuffer buffer = ByteBuffer.allocateDirect(triangleCoords.length * 4);
            buffer.order(ByteOrder.nativeOrder());
            FloatBuffer vertexBuffer = buffer.asFloatBuffer();
            vertexBuffer.put(triangleCoords);
            vertexBuffer.position(0);
            final IntBuffer vbo = IntBuffer.allocate(1);
            final IntBuffer vao = IntBuffer.allocate(1);
            GLES30.glGenBuffers(1, vao);
            GLES30.glGenBuffers(1, vbo);
            this.vao = vao.get(0);
            this.vbo = vbo.get(0);
            GLES30.glBindVertexArray(this.vao);
            GLES30.glBindBuffer(GLES30.GL_ARRAY_BUFFER, this.vbo);
            GLES30.glBufferData(
                GLES30.GL_ARRAY_BUFFER, buffer.capacity(), vertexBuffer, GLES30.GL_STATIC_DRAW);
            GLES30.glVertexAttribPointer(0, 3, GLES30.GL_FLOAT, false, 5 * 4, 0);
            GLES30.glEnableVertexAttribArray(0);
            GLES30.glVertexAttribPointer(1, 2, GLES30.GL_FLOAT, false, 5 * 4, 3 * 4);
            GLES30.glEnableVertexAttribArray(1);
            GLES30.glClearColor(1.0f, 0, 0, 1);
            final IntBuffer textures = IntBuffer.allocate(1);
            GLES30.glGenTextures(1, textures);
            GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, textures.get(0));
            GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MIN_FILTER,
                    GLES30.GL_LINEAR);
            GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MAG_FILTER,
                    GLES30.GL_LINEAR);
            final Bitmap bitmap =
                BitmapFactory.decodeStream(getResources().openRawResource(R.raw.timg));
            final ByteBuffer pixelsBuffer = ByteBuffer.allocateDirect(bitmap.getByteCount());
            bitmap.copyPixelsToBuffer(pixelsBuffer);
            pixelsBuffer.position(0);
            GLES30.glTexImage2D(
                GLES30.GL_TEXTURE_2D,
                0,
                GLES30.GL_RGBA,
                bitmap.getWidth(),
                bitmap.getHeight(),
                0,
                GLES30.GL_RGBA,
                GLES30.GL_UNSIGNED_BYTE,
                pixelsBuffer);
            Matrix.scaleM(modelMatrix, 0, 1000,
                    1000 * (1.0f * bitmap.getHeight() / bitmap.getWidth()), 1);
            bitmap.recycle();
            texture = textures.get(0);
          }

          float[] modelMatrix = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
          float[] orthoMatrix = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
          float[] viewMatrix = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
          int texture;

          @Override
          public void onSurfaceChanged(GL10 gl, int width, int height) {
            GLES30.glViewport(0, 0, width, height);
            Matrix.setLookAtM(viewMatrix, 0, sumX, sunY, -3
                    , sumX, sunY, 0, 0f, 1.0f, 0.0f);
            Matrix.orthoM(
                orthoMatrix,
                0,
                width / 2.0f,
                -width / 2.0f,
                -height / 2.0f,
                height / 2.0f,
                0.01f,
                100);
          }

          @Override
          public void onDrawFrame(GL10 gl) {
            Matrix.setLookAtM(viewMatrix, 0, sumX, sunY, -3
                    , sumX, sunY, 0, 0f, 1.0f, 0.0f);
            GLES30.glClear(GL10.GL_COLOR_BUFFER_BIT);
            GLES30.glUseProgram(programId);
            GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
            GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, texture);
            int orthoMatrixLocation = GLES30.glGetUniformLocation(programId, "orthoMatrix");
            GLES30.glUniformMatrix4fv(orthoMatrixLocation, 1, false, orthoMatrix, 0);
            int viewMatrixLocation = GLES30.glGetUniformLocation(programId, "viewMatrix");
            GLES30.glUniformMatrix4fv(viewMatrixLocation, 1, false, viewMatrix, 0);
            int modelMatrixLocation = GLES30.glGetUniformLocation(programId, "modelMatrix");
            GLES30.glUniformMatrix4fv(modelMatrixLocation, 1, false, modelMatrix, 0);
            GLES30.glBindVertexArray(vao);
            GLES30.glDrawArrays(GLES30.GL_TRIANGLES, 0, 6);
            GLES30.glBindVertexArray(0);
            GLES30.glUseProgram(0);
          }
        });
      setContentView(glSurfaceView);
  }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容