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_overlay.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  675 b   |  54 lines  |  [TEXT/CWIE]

  1. /* Copyright (c) Mark J. Kilgard, 1996.  */
  2.  
  3. /* This program is freely distributable without licensing fees
  4. and is provided without guarantee or warrantee expressed or
  5. implied. This program is -not- in the public domain. */
  6.  
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <assert.h>
  11.  
  12. #include "glut.h"
  13. #include "glutint.h"
  14.  
  15. void glutEstablishOverlay(void)
  16. {
  17.  
  18. }
  19.  
  20. void glutRemoveOverlay(void)
  21. {
  22.  
  23. }
  24.  
  25. void glutUseLayer(GLenum layer)
  26. {
  27.  
  28. }
  29.  
  30. void glutPostOverlayRedisplay(void)
  31. {
  32.  
  33. }
  34.  
  35. void glutOverlayDisplayFunc(GLUTdisplayCB displayFunc)
  36. {
  37.  
  38. }
  39.  
  40. void glutHideOverlay(void)
  41. {
  42.  
  43. }
  44.  
  45. void glutShowOverlay(void)
  46. {
  47.  
  48. }
  49.  
  50. int glutLayerGet(GLenum param)
  51. {
  52.     return false;
  53. }
  54.