Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

  1. #ifndef _image_h_
  2. #define _image_h_
  3. /*
  4. ** Copyright 1991,1992, Silicon Graphics, Inc.
  5. ** All Rights Reserved.
  6. **
  7. ** This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  8. ** the contents of this file may not be disclosed to third parties, copied or
  9. ** duplicated in any form, in whole or in part, without the prior written
  10. ** permission of Silicon Graphics, Inc.
  11. **
  12. ** RESTRICTED RIGHTS LEGEND:
  13. ** Use, duplication or disclosure by the Government is subject to restrictions
  14. ** as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  15. ** and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  16. ** successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  17. ** rights reserved under the Copyright Laws of the United States.
  18. **
  19. ** $Revision: 1.2 $
  20. ** $Date: 1992/10/06 16:22:55 $
  21. */
  22. extern GLint APIPRIVATE __glImageSize(GLsizei width, GLsizei height, GLenum format,
  23. GLenum type);
  24. extern void APIPRIVATE __glFillImage(__GLcontext *gc, GLsizei width, GLsizei height,
  25. GLenum format, GLenum type, const GLvoid *userdata,
  26. GLubyte *newimage);
  27. extern void __glEmptyImage(__GLcontext *gc, GLsizei width, GLsizei height,
  28. GLenum format, GLenum type, const GLubyte *oldimage,
  29. GLvoid *userdata);
  30. extern GLubyte __glMsbToLsbTable[256];
  31. #endif