| 844 | // |
| 845 | |
| 846 | ILvoid ilError::Check(ILvoid (*Callback)(const char*)) |
| 847 | { |
| 848 | static ILenum Error; |
| 849 | |
| 850 | while ((Error = ilGetError()) != IL_NO_ERROR) { |
| 851 | Callback(iluErrorString(Error)); |
| 852 | } |
| 853 | |
| 854 | return; |
| 855 | } |
| 856 | |
| 857 | |
| 858 | ILvoid ilError::Check(ILvoid (*Callback)(ILenum)) |
nothing calls this directly
no outgoing calls
no test coverage detected