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.

26 lines
717 B

  1. //----------------------------------------------------------------------------
  2. //
  3. // rampold.h
  4. //
  5. // Structures which define the interface to the old ramp routines.
  6. //
  7. // Copyright (C) Microsoft Corporation, 1997.
  8. //
  9. //----------------------------------------------------------------------------
  10. #ifndef _RAMPOLD_H_
  11. #define _RAMPOLD_H_
  12. #define ROB_DEPTH_NUM 2
  13. #define ROB_RENDER_Z_NUM 2
  14. #define ROB_RENDER_GOURAUD_NUM 2
  15. #define ROB_RENDER_TEXTURE_NUM 3
  16. #define ROB_RENDER_TRANS_NUM 2
  17. typedef struct tagRAMPOLDBEADS
  18. {
  19. PFNRAMPOLD pfnRampOld[ROB_DEPTH_NUM][ROB_RENDER_Z_NUM][ROB_RENDER_GOURAUD_NUM][ROB_RENDER_TEXTURE_NUM][ROB_RENDER_TRANS_NUM];
  20. } RAMPOLDBEADS, *PRAMPOLDBEADS;
  21. #endif