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

GIS编程

开发平台:

Visual C++

  1. ."
  2. ." Copyright (c) Mark J. Kilgard, 1996.
  3. ."
  4. .TH glutReportErrors 3GLUT "3.7" "GLUT" "GLUT"
  5. .SH NAME
  6. glutReportErrors - for debugging purposes; prints out OpenGL run-time errors.
  7. .SH SYNTAX
  8. .nf
  9. .LP
  10. void glutReportErrors(void);
  11. .SH DESCRIPTION
  12. This routine prints out any OpenGL run-time errors pending and clears
  13. the errors.  This routine typically should only be used for debugging purposes
  14. since calling it will slow OpenGL programs.  It is provided as a convenience;
  15. all the routine does is call
  16. .I glGetError
  17. until no more errors are reported.  Any errors detected are reported
  18. with a GLUT warning and the corresponding text message generated by
  19. .I gluErrorString.
  20. Calling glutReportErrors repeatedly in your program can help isolate
  21. OpenGL errors to the offending OpenGL command.  Remember that you
  22. can use the
  23. .I -gldebug
  24. option to detect OpenGL errors in any GLUT program.
  25. .SH SEE ALSO
  26. glutInit, glutCreateWindow, glutInitDisplayMode, gluErrorString, glGetError
  27. .SH AUTHOR
  28. Mark J. Kilgard (mjk@nvidia.com)