Lines Matching refs:mD3DCompilerModule
106 mD3DCompilerModule(nullptr), in HLSLCompiler()
132 if (GetModuleHandleExA(0, d3dCompilerNames[i], &mD3DCompilerModule)) in ensureInitialized()
139 if (!mD3DCompilerModule) in ensureInitialized()
143 mD3DCompilerModule = LoadLibraryA(D3DCOMPILER_DLL_A); in ensureInitialized()
145 if (mD3DCompilerModule) in ensureInitialized()
153 mD3DCompilerModule = LoadLibraryA(kOldCompilerLibrary); in ensureInitialized()
154 if (mD3DCompilerModule) in ensureInitialized()
162 if (!mD3DCompilerModule) in ensureInitialized()
172 reinterpret_cast<pD3DCompile>(GetProcAddress(mD3DCompilerModule, "D3DCompile")); in ensureInitialized()
176 reinterpret_cast<pD3DDisassemble>(GetProcAddress(mD3DCompilerModule, "D3DDisassemble")); in ensureInitialized()
182 mD3DCompilerModule = nullptr; in ensureInitialized()
198 FreeLibrary(mD3DCompilerModule); in release()
199 mD3DCompilerModule = nullptr; in release()
218 ASSERT(mD3DCompilerModule); in compileToBinary()