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.

40 lines
1.2 KiB

  1. #ifndef __glurenderhints_h_
  2. #define __glurenderhints_h_
  3. /**************************************************************************
  4. * *
  5. * Copyright (C) 1992, Silicon Graphics, Inc. *
  6. * *
  7. * These coded instructions, statements, and computer programs contain *
  8. * unpublished proprietary information of Silicon Graphics, Inc., and *
  9. * are protected by Federal copyright law. They may not be disclosed *
  10. * to third parties or copied or duplicated in any form, in whole or *
  11. * in part, without the prior written consent of Silicon Graphics, Inc. *
  12. * *
  13. **************************************************************************/
  14. /*
  15. * renderhints.h - $Revision: 1.1 $
  16. */
  17. #include "types.h"
  18. class Renderhints {
  19. public:
  20. Renderhints( void );
  21. void init( void );
  22. int isProperty( long );
  23. REAL getProperty( long );
  24. void setProperty( long, REAL );
  25. REAL display_method; /* display mode */
  26. REAL errorchecking; /* activate error checking */
  27. REAL subdivisions; /* maximum number of subdivisions per patch */
  28. REAL tmp1; /* unused */
  29. int displaydomain;
  30. int maxsubdivisions;
  31. int wiretris;
  32. int wirequads;
  33. };
  34. #endif /* __glurenderhints_h_ */