ILERROR
| 913 | // ILERROR |
| 914 | // |
| 915 | void ilError::Check(void (*Callback)(const char*)) |
| 916 | { |
| 917 | static ILenum Error; |
| 918 | |
| 919 | while ((Error = ilGetError()) != IL_NO_ERROR) { |
| 920 | Callback(iluErrorString(Error)); |
| 921 | } |
| 922 | |
| 923 | return; |
| 924 | } |
| 925 | |
| 926 | void ilError::Check(void (*Callback)(ILenum)) |
| 927 | { |
nothing calls this directly
no outgoing calls
no test coverage detected