|
@@ -270,9 +270,10 @@ HRESULT WINAPI DxilD3DCompile(LPCVOID pSrcData, SIZE_T SrcDataSize,
|
|
}
|
|
}
|
|
|
|
|
|
std::vector<LPCWSTR> arguments;
|
|
std::vector<LPCWSTR> arguments;
|
|
- // /Gec, /Ges Not implemented:
|
|
|
|
- // if(Flags1 & D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY)
|
|
|
|
- // arguments.push_back(L"/Gec"); if(Flags1 & D3DCOMPILE_ENABLE_STRICTNESS)
|
|
|
|
|
|
+ if (Flags1 & D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY)
|
|
|
|
+ arguments.push_back(L"/Gec");
|
|
|
|
+ // /Ges Not implemented:
|
|
|
|
+ //if (Flags1 & D3DCOMPILE_ENABLE_STRICTNESS)
|
|
// arguments.push_back(L"/Ges");
|
|
// arguments.push_back(L"/Ges");
|
|
if (Flags1 & D3DCOMPILE_IEEE_STRICTNESS)
|
|
if (Flags1 & D3DCOMPILE_IEEE_STRICTNESS)
|
|
arguments.push_back(L"/Gis");
|
|
arguments.push_back(L"/Gis");
|