Source code of Windows XP (NT5)
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.

22 lines
425 B

  1. #ifndef LARGE_TRIANGLE_TEST_H
  2. #define LARGE_TRIANGLE_TEST_H
  3. class LargeTriangle : public SkeletonTest
  4. {
  5. private:
  6. typedef SkeletonTest parent;
  7. public:
  8. LargeTriangle();
  9. virtual void INITFUNCTION();
  10. virtual void IDLEFUNCTION();
  11. virtual void RENDFUNCTION();
  12. private:
  13. GLfloat fWindowWidth;
  14. GLfloat fWindowHeight;
  15. GLfloat fClr1, fClr2, fClr3, fClr4, fClr5, fClr6;
  16. };
  17. #endif // LARGE_TRIANGLE_TEST_H