#include <revolution/gx.h> void GXSetVerifyLevel( GXWarningLevel level );
| level | Specifies level of severity of runtime warnings. Accepted values are:
|
|---|
None.
This function is used with the Debug GX library to control the types of warnings generated at runtime. To disable all runtime warnings, set level to GX_WARN_NONE. Setting level to GX_WARN_SEVERE will print only fatal errors. Setting level to GX_WARN_MEDIUM will print out moderate warnings and all fatal errors. Setting level to GX_WARN_ALL will print out all the warnings that the system must provide.
Severe warnings indicate the existence of illegal or unsupported GX settings in your code. It is recommended that you eliminate all settings causing these warnings. Regarding other levels of warning, you don't always have to take notice because some of them are generated just for reference, though they might still provide useful information to debug your code.
By default, GXInit will set level to GX_WARN_NONE in the debug version of the library.
GXSetVerifyCallback, Runtime Warnings
2006/03/01 Initial version.
CONFIDENTIAL