| 163 | } |
| 164 | |
| 165 | DevIL::DevILErrorCode DevIL::DevIL::GetErrorCode() |
| 166 | { |
| 167 | if (s_eErrCode == OK) |
| 168 | { |
| 169 | return DevILErrorCode(ilGetError()); |
| 170 | } |
| 171 | else |
| 172 | { |
| 173 | DevILErrorCode eErr = s_eErrCode; |
| 174 | s_eErrCode = OK; |
| 175 | return eErr; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | System::Drawing::Bitmap __gc* DevIL::DevIL::LoadBitmapAndScale(System::String __gc* i_szFileName, |
| 180 | int i_iWidth, int i_iHeight, |
nothing calls this directly
no outgoing calls
no test coverage detected