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

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1998.  */
  2. /* This program is freely distributable without licensing fees
  3.    and is provided without guarantee or warrantee expressed or
  4.    implied. This program is -not- in the public domain. */
  5. #include "glsmapint.h"
  6. void
  7. smapGetSphereMapTexObj(SphereMap *smap, GLuint *texobj)
  8. {
  9. *texobj = smap->smapTexObj;
  10. }
  11. void
  12. smapGetViewTexObj(SphereMap *smap, GLuint *texobj)
  13. {
  14. *texobj = smap->viewTexObj;
  15. }
  16. void
  17. smapGetViewTexObjs(SphereMap *smap, GLuint texobjs[6])
  18. {
  19. int i;
  20. for (i=0; i<6; i++) {
  21. texobjs[i] = smap->viewTexObjs[i];
  22. }
  23. }