| 144 | |
| 145 | |
| 146 | void DevIL::DevIL::LoadILU() |
| 147 | { |
| 148 | HMODULE hM = LoadLibrary("ILU.dll"); |
| 149 | |
| 150 | if (hM) |
| 151 | { |
| 152 | pfnIluScale = (PFNILUSCALE)GetProcAddress(hM, "iluScale"); |
| 153 | pfnIluImageParameter = (PFNILUIMAGEPARAMETER)GetProcAddress(hM, "iluImageParameter"); |
| 154 | s_bIluLoaded = (pfnIluScale != NULL) && (pfnIluImageParameter != NULL); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | |
| 159 |
nothing calls this directly
no outgoing calls
no test coverage detected