- 浏览: 48845 次
- 性别:
- 来自: 深圳
最新评论
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.example.android.apis.graphics; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.nio.Buffer; import java.nio.ByteBuffer; import java.nio.ByteOrder; import javax.microedition.khronos.opengles.GL10; import android.app.Activity; import android.opengl.ETC1Util; import android.opengl.GLES10; import android.opengl.GLSurfaceView; import android.os.Bundle; import android.util.Log; import com.example.android.apis.R; /** * Demonstrate how to use ETC1 format compressed textures. * This sample can be recompiled to use either resource-based * textures (compressed offline using the etc1tool), or * textures created on the fly by compressing images. * */ public class CompressedTextureActivity extends Activity { private final static String TAG = "CompressedTextureActivity"; /** * Choose between creating a compressed texture on the fly or * loading a compressed texture from a resource. */ private final static boolean TEST_CREATE_TEXTURE = false; /** * When creating a compressed texture on the fly, choose * whether or not to use the i/o stream APIs. */ private final static boolean USE_STREAM_IO = true; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mGLView = new GLSurfaceView(this); mGLView.setEGLConfigChooser(false); StaticTriangleRenderer.TextureLoader loader;//纹理装载器 if (TEST_CREATE_TEXTURE) { loader = new SyntheticCompressedTextureLoader();//运行时创建资源。 } else { loader = new CompressedTextureLoader();//压缩从资源文件中获得的纹理 } mGLView.setRenderer(new StaticTriangleRenderer(this, loader));//设置渲染 setContentView(mGLView); } @Override protected void onPause() { super.onPause(); mGLView.onPause(); } @Override protected void onResume() { super.onResume(); mGLView.onResume(); } /** * Demonstrate how to load a compressed texture from an APK resource. * */ private class CompressedTextureLoader implements StaticTriangleRenderer.TextureLoader { public void load(GL10 gl) { Log.w(TAG, "ETC1 texture support: " + ETC1Util.isETC1Supported()); InputStream input = getResources().openRawResource(R.raw.androids);//从raw资源获取输入流 try { ETC1Util.loadTexture(GLES10.GL_TEXTURE_2D, 0, 0, GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, input);//通过输入流设置纹理 } catch (IOException e) { Log.w(TAG, "Could not load texture: " + e); } finally { try { input.close(); } catch (IOException e) { // ignore exception thrown from close. } } } } /** * Demonstrate how to create a compressed texture on the fly. */ private class SyntheticCompressedTextureLoader implements StaticTriangleRenderer.TextureLoader { public void load(GL10 gl) { int width = 128; int height = 128; Buffer image = createImage(width, height);//创建纹理缓存 /* * 将Buffer封装成ETC1Texture */ ETC1Util.ETC1Texture etc1Texture = ETC1Util.compressTexture(image, width, height, 3, 3 * width); if (USE_STREAM_IO) { // Test the ETC1Util APIs for reading and writing compressed textures to I/O streams. try { ByteArrayOutputStream bos = new ByteArrayOutputStream(); ETC1Util.writeTexture(etc1Texture, bos);//将ETC1Texture写入输出流 ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());//将输入流转换成Byte输入流 ETC1Util.loadTexture(GLES10.GL_TEXTURE_2D, 0, 0, GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, bis);//通过输入流设置纹理 } catch (IOException e) { Log.w(TAG, "Could not load texture: " + e); } } else { ETC1Util.loadTexture(GLES10.GL_TEXTURE_2D, 0, 0, GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, etc1Texture); } } private Buffer createImage(int width, int height) {//快速创建纹理 int stride = 3 * width; ByteBuffer image = ByteBuffer.allocateDirect(height * stride) .order(ByteOrder.nativeOrder()); // Fill with a pretty "munching squares" pattern: for (int t = 0; t < height; t++) { byte red = (byte)(255-2*t); byte green = (byte)(2*t); byte blue = 0; for (int x = 0; x < width; x++) { int y = x ^ t; image.position(stride*y+x*3); image.put(red); image.put(green); image.put(blue); } } image.position(0); return image; } } private GLSurfaceView mGLView; }
发表评论
-
图片处理
2012-11-28 02:48 0http://www.linuxidc.com/Linux/2 ... -
Api Demo - .graphics(24)>>Cube
2012-08-03 15:18 1223package com.example.android.api ... -
Api Demo - .graphics(24)>>TouchRotateActivity
2012-08-03 15:07 1108package com.example.android.api ... -
Api Demo - .graphics(23)>>CubeMapActivity
2012-07-31 16:31 1443package com.opengl.test; imp ... -
opengles 学习关键字
2012-07-24 09:35 669主动渲染、平面着色、透视投影、near、索引法、glLight ... -
Api Demo - .graphics(21)>>StaticTriangleRenderer
2012-07-23 17:51 1264package com.example.android.api ... -
Api Demo - .graphics(19)
2012-07-20 22:45 749package com.example.android.api ... -
Api Demo - .graphics(18)
2012-07-20 10:32 838package com.example.android.api ... -
Api Demo - .graphics(17)
2012-07-19 11:43 955/* package com.example.andro ... -
Api Demo - .graphics(16)
2012-07-18 14:54 626package com.example.android.api ... -
Api Demo - .graphics(15)
2012-07-18 12:55 839package com.example.android.api ... -
Api Demo - .graphics(14)
2012-07-18 11:50 839package com.example.android.api ... -
Api Demo - .graphics(13)
2012-07-17 11:38 921//关键字 Paint,MaskFilte,Path,Xfer ... -
Api Demo - .graphics(12)
2012-07-17 10:44 675<?xml version="1.0" ... -
Api Demo - .graphics(11)
2012-07-17 09:53 802//关键字:Shader ,ShapeDrawable pa ... -
Api Demo - .graphics(10)
2012-07-16 17:59 1062/* * Copyright (C) 2008 The A ... -
Api Demo - .graphics(9)
2012-07-16 11:26 771//关键字:颜色合成,JPEG,PNG图片解压,Bitmap压 ... -
Api Demo - .graphics(8)
2012-07-16 10:43 667//关键字:ColorMatrixColorFilter; ... -
Api Demo - .graphics(7)
2012-07-16 09:53 793// 关键字:Porter-Duff package c ... -
Api Demo - .graphics(6)
2012-07-16 08:57 787//关键字:截取画布 p ...
相关推荐
返回json数组的科技头条的api数据jar包
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>1.7</jdk.version> <spring.version>4.0.1.RELEASE</spring.version> <spring-data-jpa.version>1.6.2.RELEASE</spring-...
- Camera Window >>DEMO - Cinematics >>DEMO - Content Fitter >>DEMO - Forward Focus >>DEMO - Geometry Boundaries - Limit Distance >>DEMO - Limit Speed >>DEMO - Numeric Boundaries >>DEMO - Pan ...
JavaScript人脸识别库Face-api.js的示例,无需安装nodejs,iis本地直接看效果。注意调用摄像头不能用IP访问,只能localhost,远程预览需要HTTPS;iis无扩展名文件若出现404,需在mime类型中添加扩展名【.】类型...
Api-dawn-api-demo.zip,道恩API解调API,一个api可以被认为是多个软件设备之间通信的指导手册。例如,api可用于web应用程序之间的数据库通信。通过提取实现并将数据放弃到对象中,api简化了编程。
"Face-Detection-JavaScript-demo"和"Face-Detection-JavaScript-master"可能是两个示例项目,它们演示了如何在实际项目中应用face-api.js。通过阅读源代码和运行这些示例,你将更好地理解如何整合face-api.js到你的...
本资源包含海康威视的Web开发控件及其示例(demo),旨在帮助开发者快速集成并实现监控画面在网页上的展示和操作。 1. **海康IE控件**:海康威视的Web开发控件主要针对Internet Explorer浏览器设计,用于在网页上...
根据atmel官方例程sam3x_ek_bertos_http_demo,自己...在keil->Project->Manage->Components,Environment,Books...->Folders/Externsions的 Use GCC的GNU-Tool Folder中指定arm-2012.03-56-arm-none-eabi.exe的安装目录
Api-demo.zip,API平台的演示应用程序框架API平台演示,一个api可以被认为是多个软件设备之间通信的指导手册。例如,api可用于web应用程序之间的数据库通信。通过提取实现并将数据放弃到对象中,api简化了编程。
<description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot...
这是很据android-serialport-api 自己简化的一个demo ,可以使用。原来android-serial-api的程序很多人反映都不能使用,所以自己写了这个,只有一个activity,可以做为你的学习参考。
<div class="demo-description"> <p>The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a ...
此工程集成了nexus私服,配合我的“nexus搭建和基于spring boot2.x的配置,centos7"博客,可以使用spring boot集成nexus
mybatis-3.2.7.jar source code API configuration.xml settings defaultStatementTimeout 的设置 MyBatisDemo 常用例子 使用3种方法,编写mapper,操作数据库
标题中的"API-Demo.rar_DEMO_epon_olt"表明这是一个关于EPON(以太网无源光网络)OLT(光线路终端)的API演示示例。这个压缩包可能包含了用于展示如何与PAS5001N OLT设备进行交互的API代码或文档。 描述中的"PMC-...
open-api-sdk-2.0和jackson,京东宙斯开发jar包,宙斯API包,本人开发使用,open-api-sdk-2.0.jar,jackson-core-asl-1.9.8.jar,jackson-mapper-asl-1.9.8.jar,需要朋友可自行下载
在压缩包内的文件"API-Demo-v1.0.6",很可能是一个包含源代码、编译后的可执行文件、库文件、或者相关配置文件的文件夹。这个版本号"v1.0.6"表示这是该API-Demo的第六个版本,说明项目已经经过了多次迭代和改进。 ...
《支付宝小程序API-Demo深度解析》 支付宝小程序作为阿里巴巴生态系统的一部分,为开发者提供了一种便捷的构建轻量级应用的方式。API-Demo.zip文件包含了支付宝小程序的官方示例代码,旨在帮助开发者更好地理解和...
MapReduce Java API实例-统计单次出现频率示例代码-MapReduceDemo.rar MapReduce Java API实例-统计单次出现频率示例代码-MapReduceDemo.rar MapReduce Java API实例-统计单次出现频率示例代码-MapReduceDemo.rar
nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'error_view' of bean class [com.demo.controller.action.AuthorAction]: Bean property 'error_view' is not ...