home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include "isfast.h"
-
-
-
- static const char* cFast = "fast";
- static const char* cSlow = "slow";
-
-
-
- void
- main(int argc, char** argv)
- {
- pdbOpen();
-
- printf("Immediate mode is %s\n", ImmediateModeIsFast()? cFast: cSlow);
- printf("Depth-buffering is %s\n", DepthBufferingIsFast()?cFast:cSlow);
- printf("Stencilling is %s\n", StencillingIsFast()? cFast: cSlow);
- printf("Texture mapping is %s\n", TextureMappingIsFast()?cFast:cSlow);
-
- pdbClose();
- }
-