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

Method LoadILU

DevIL/bindings/DotNet/DevIL.NET.cpp:146–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144
145
146void 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected