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.

18 lines
622 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: genrgb.h
  3. *
  4. * Copyright (c) 1992 Microsoft Corporation
  5. *
  6. \**************************************************************************/
  7. #ifndef __GENRGB_H__
  8. #define __GENRGB_H__
  9. extern void FASTCALL __glGenInitRGB(__GLcontext *glGc, __GLcolorBuffer *Cfb , GLenum type );
  10. extern void FASTCALL __glGenFreeRGB(__GLcontext *glGc, __GLcolorBuffer *Cfb );
  11. #define DITHER_INC(i) (((__GLfloat) (((i) << 1) + 1)) / (__GLfloat) (2 * __GL_DITHER_PRECISION))
  12. extern __GLfloat fDitherIncTable[];
  13. #endif /* !__GENRGB_H__ */