home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / OpenGL 1.0 SDK / Source / Libraries / glut / glut_vidresize.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  546 b   |  33 lines  |  [TEXT/CWIE]

  1.  
  2. /* Copyright (c) Mark J. Kilgard, 1996. */
  3.  
  4. /* This program is freely distributable without licensing fees 
  5.    and is provided without guarantee or warrantee expressed or 
  6.    implied. This program is -not- in the public domain. */
  7.  
  8. #include <stdlib.h>
  9. #include "glut.h"
  10. #include "glutint.h"
  11.  
  12.  
  13. int glutVideoResizeGet(GLenum param)
  14. {
  15.     return 0;
  16. }
  17.  
  18. void glutSetupVideoResizing(void)
  19. {
  20. }
  21.  
  22. void glutStopVideoResizing(void)
  23. {
  24. }
  25.  
  26. void glutVideoResize(int x, int y, int width, int height)
  27. {
  28. }
  29.  
  30. void glutVideoPan(int x, int y, int width, int height)
  31. {
  32. }
  33.