README
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. This directory contains an example of using a simple GLUT benchmark
  2. harness to construct portable application-specific OpenGL benchmarks.
  3. For more information on this code and how to construction
  4. application-specific OpenGL benchmarks with the gl_harness.c in this
  5. directory, see Section 6.6.8 of my book "Programming OpenGL for the X
  6. Window System" (Addison-Wesley, ISBN 0-201-48359-9).  See:
  7.   http://reality.sgi.com/mjk_asd/OpenGLforX.html
  8. Because the benchmark harness uses GLUT, the benchmarks created work on
  9. any GLUT-capable window system (not just X11).
  10. Example runs:
  11.   % torus_test
  12.   Renders/second = 2.90951
  13.     after 30 iterations over 10.311 seconds
  14.   % torus_test -iters 40
  15.   Renders/second = 2.90846
  16.     after 40 iterations over 13.753 seconds
  17.   % torus_test -time 5 -depth
  18.   Renders/second = 2.53678
  19.     after 15 iterations over 5.913 seconds
  20.   % torus_test -depth -light
  21.   Renders/second = 1.82515
  22.     after 20 iterations over 10.958 seconds
  23.   % torus_test -geometry 100x100 -depth -light
  24.   Renders/second = 2.00981
  25.     after 25 iterations over 12.439 seconds
  26. Good luck with your benchmarking.
  27. - Mark
  28.   July 10, 1997