博客
关于我
Android OpenGL ES2.0编程教程系列之总览
阅读量:209 次
发布时间:2019-02-28

本文共 2190 字,大约阅读时间需要 7 分钟。

 

用OpenGL ES显示图形

The Android framework provides plenty of standard tools for creating attractive, functional graphical user interfaces. However, if you want more control of what your application draws on screen, or are venturing into three dimensional graphics, you need to use a different tool. The OpenGL ES APIs provided by the Android framework offers a set of tools for displaying high-end, animated graphics that are limited only by your imagination and can also benefit from the acceleration of graphics processing units (GPUs) provided on many Android devices.
Android框架提供了大量用于创建有趣的、功能性图形用户界面的标准工具。然而,如果你想更多地控制你的应用在屏幕上画什么,或冒险进入3D图形,那么你就需要使用一个不同的工具。Android框架提供了一系列用于显示只受限于你想象力的高端、生动的图形的工具,当然这也受益于许多Android设备提供的GPUs加速。
This class walks you through the basics of developing applications that use OpenGL, including setup, drawing objects, moving drawn elements and responding to touch input.
本课程带你掌握使用OpenGL开发应用的基本知识,包括创建项目、绘制对象、移动绘图元素以及响应触摸输入事件。
The example code in this class uses the OpenGL ES 2.0 APIs, which is the recommended API version to use with current Android devices. For more information about versions of OpenGL ES, see the OpenGL developer guide.
本课程的例程代码使用的是OpenGL ES 2.0 APIs,这是针对目前Android设备推荐的API版本。
This class walks you through the basics of developing applications that use OpenGL, including setup, drawing objects, moving drawn elements and responding to touch input.
本课程带你掌握使用OpenGL开发应用的基本知识,包括创建项目、绘制对象、移动绘图元素以及响应触摸输入事件。
The example code in this class uses the OpenGL ES 2.0 APIs, which is the recommended API version to use with current Android devices. For more information about versions of OpenGL ES, see the OpenGL developer guide.
本课程的例程代码使用的是OpenGL ES 2.0 APIs,这是针对目前Android设备推荐的API版本。如果想了解更多的关于OpenGL ES版本的信息,请看
Note: Be careful not to mix OpenGL ES 1.x API calls with OpenGL ES 2.0 methods! The two APIs are not interchangeable and trying to use them together only results in frustration and sadness.
注意:小心混合使用OpenGL ES 1.x API调用和OpenGL ES 2.0方法!这两种APIs是不可交替的,尝试混合使用它们只会导致沮丧和悲伤。

系列课程

  • :学习如何创建一个可以进行OpenGL ES绘图的Android应用
  • :学习如何定义图形以及为何你需要知道面和绕向
  • :学习如何在你的Android应用中绘制OpenGL图形
  • :学习如何使用投影和相机视图在你绘制的对象上获得一个新的透视视图
  • :学习如何使用OpenGL给你的绘制对象添加基本的运动和动画
  • :学习如何使用OpenGL处理基本的互动

转载地址:http://kvwp.baihongyu.com/

你可能感兴趣的文章
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询数据库所有表的字段信息
查看>>
【Java基础】什么是面向对象?
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>
MySQL 树形结构 根据指定节点 获取其下属的所有子节点(包含路径上的枝干节点和叶子节点)...
查看>>
mysql 死锁 Deadlock found when trying to get lock; try restarting transaction
查看>>
mysql 死锁(先delete 后insert)日志分析
查看>>
MySQL 死锁了,怎么办?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 添加列,修改列,删除列
查看>>
mysql 添加索引
查看>>
MySQL 添加索引,删除索引及其用法
查看>>
mysql 状态检查,备份,修复
查看>>
MySQL 用 limit 为什么会影响性能?
查看>>