GLView.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***  * Excerpted from "Hello, Android!",  * published by The Pragmatic Bookshelf.  * Copyrights apply to this code. It may not be used to create training material,   * courses, books, articles, and the like. Contact us if you are in doubt.  * We make no guarantees that this code is fit for any purpose.   * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information. ***/
  2. package org.example.opengl;
  3. import android.content.Context;
  4. import android.opengl.GLSurfaceView;
  5. class GLView extends GLSurfaceView {
  6.    private final GLRenderer renderer;
  7.    GLView(Context context) {
  8.       super(context);
  9.       // Uncomment this to turn on error-checking and logging
  10.       //setDebugFlags(DEBUG_CHECK_GL_ERROR | DEBUG_LOG_GL_CALLS);
  11.       renderer = new GLRenderer(context);
  12.       setRenderer(renderer);
  13.    }
  14. }