00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _TEST_FILL_H_
00010 #define _TEST_FILL_H_
00011 #include "test_globals.h"
00012 #include "test.h"
00013
00014
00015
00016 #define SURFACES 64
00017
00022 class TestFill : public Test
00023 {
00024 private:
00025 float fillrate;
00026 int tex_units;
00027 string obj_name;
00028 int surfaces;
00029
00030 int resx, resy;
00031 public:
00032 TestFill(int duration,int type, TScene *s);
00033 ~TestFill();
00034 void SaveResults();
00035 void Run();
00036 void Animate();
00037 };
00038
00039 #endif