MCPcopy Create free account
hub / github.com/DentonW/DevIL / GetErrorCode

Method GetErrorCode

DevIL/bindings/DotNet/DevIL.NET.cpp:165–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163}
164
165DevIL::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
179System::Drawing::Bitmap __gc* DevIL::DevIL::LoadBitmapAndScale(System::String __gc* i_szFileName,
180 int i_iWidth, int i_iHeight,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected