Lines Matching refs:hShaderUtilDLL

101 void LoadDLLs(HMODULE *hShaderUtilDLL, GSH2Func *fpGSH2, HMODULE *hGfdDLL, GFDFunc *fpGFD)  in LoadDLLs()  argument
103 *hShaderUtilDLL = LoadLibrary(LIB_DLL_SHADERUTILS); in LoadDLLs()
104 if ( !*hShaderUtilDLL ) in LoadDLLs()
107 FreeLibrary(*hShaderUtilDLL); in LoadDLLs()
120 … = reinterpret_cast<PGSH2Initialize>(GetProcAddress(*hShaderUtilDLL, "GSH2Initiali… in LoadDLLs()
121 … = reinterpret_cast<PGSH2Destroy>(GetProcAddress(*hShaderUtilDLL, "GSH2Destroy"… in LoadDLLs()
122 … = reinterpret_cast<PGSH2CompileProgram3>(GetProcAddress(*hShaderUtilDLL, "GSH2CompileP… in LoadDLLs()
123 … = reinterpret_cast<PGSH2DestroyGX2Program3>(GetProcAddress(*hShaderUtilDLL, "GSH2DestroyG… in LoadDLLs()
124 … = reinterpret_cast<PGSH2CalcFetchShaderSizeEx>(GetProcAddress(*hShaderUtilDLL, "GSH2CalcFetc… in LoadDLLs()
125 … = reinterpret_cast<PGSH2InitFetchShaderEx>(GetProcAddress(*hShaderUtilDLL, "GSH2InitFetc… in LoadDLLs()
126 … = reinterpret_cast<PGSH2GetVertexShaderGPRs>(GetProcAddress(*hShaderUtilDLL, "GSH2GetVerte… in LoadDLLs()
127 … = reinterpret_cast<PGSH2GetGeometryShaderGPRs>(GetProcAddress(*hShaderUtilDLL, "GSH2GetGeome… in LoadDLLs()
128 … = reinterpret_cast<PGSH2GetPixelShaderGPRs>(GetProcAddress(*hShaderUtilDLL, "GSH2GetPixel… in LoadDLLs()
129 …= reinterpret_cast<PGSH2GetVertexShaderStackEntries>(GetProcAddress(*hShaderUtilDLL, "GSH2GetVerte… in LoadDLLs()
130 …reinterpret_cast<PGSH2GetGeometryShaderStackEntries>(GetProcAddress(*hShaderUtilDLL, "GSH2GetGeome… in LoadDLLs()
131 … = reinterpret_cast<PGSH2GetPixelShaderStackEntries>(GetProcAddress(*hShaderUtilDLL, "GSH2GetPixel… in LoadDLLs()
132 … = reinterpret_cast<PGSH2GetABIVersion>(GetProcAddress(*hShaderUtilDLL, "GSH2GetABIVe… in LoadDLLs()
133 … = reinterpret_cast<PGSH2PrintBuildTimeStats>(GetProcAddress(*hShaderUtilDLL, "GSH2PrintBui… in LoadDLLs()
144 void FreeDLLs(HMODULE *hShaderUtilDLL, HMODULE *hGfdDLL) in FreeDLLs() argument
146 FreeLibrary(*hShaderUtilDLL); in FreeDLLs()
1087 HMODULE hShaderUtilDLL; in main() local
1102 LoadDLLs(&hShaderUtilDLL, &fpGSH2, &hGfdDLL, &fpGFD); in main()
1123 FreeDLLs(&hShaderUtilDLL, &hGfdDLL); in main()
1346 FreeDLLs(&hShaderUtilDLL, &hGfdDLL); in main()