码迷,mamicode.com
首页 > 移动开发 > 详细

AndroidGL ES-通过简单实例认识了解

时间:2019-12-13 15:33:39      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:img   大小   idg   java   conf   编程语言   code   ram   inf   

OpenGL EL

嵌入式图形处理库

 

定义了一个跨编程语言、跨平台编程的专业图形程序接口

步骤:

技术图片

 

 

实例 

创建render类:

package com.example.noooooo;
import android.opengl.GLES20;
import android.opengl.GLSurfaceView;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
public class WlGlRender implements GLSurfaceView.Renderer {
    public  WlGlRender(){
    }
    @Override
    public void onSurfaceCreated(GL10 gl, EGLConfig config) {
    }
    @Override
    public void onSurfaceChanged(GL10 gl, int width, int height) {
        //设置窗口大小
        GLES20.glViewport(0,0,width,height);
    }
    @Override
    public void onDrawFrame(GL10 gl) {
        //设置清屏
        //1:像素信息清除
        GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
        //2:用颜色来表示清屏
        GLES20.glClearColor(1.0f,0.0f,0.0f,1.0f);
    }
}

  创建GLSurfaceView类,在里面调用Render

package com.example.noooooo;

import android.content.Context;
import android.opengl.GLSurfaceView;
import android.util.AttributeSet;

public class CxjGLSurfaceView extends GLSurfaceView {
    private WlGlRender cxjRender;
    public CxjGLSurfaceView(Context context) {
        super(context,null);
    }
    public CxjGLSurfaceView(Context context, AttributeSet attrs) {
        super(context, attrs);
        cxjRender = new WlGlRender();
        setRenderer(cxjRender);
    }
}

  修改layout布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <com.example.noooooo.CxjGLSurfaceView
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>

  运行效果:界面变成红色

技术图片

 

 

技术图片

 

 

GLSurfaceView流程分析:

技术图片

AndroidGL ES-通过简单实例认识了解

标签:img   大小   idg   java   conf   编程语言   code   ram   inf   

原文地址:https://www.cnblogs.com/cxj1821/p/12035307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!