Skip to content

Commit

Permalink
Renaming IDxcBlobUtf16 to IDxcBlobWide, removing legacy and fixing li…
Browse files Browse the repository at this point in the history
…nux compilation issue
  • Loading branch information
kecho committed Nov 26, 2023
1 parent 1d5c1b8 commit 206738a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/modules/render/DxcCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,14 +463,14 @@ void DxcCompiler::compileShader(const DxcCompileArgs& args)
nullptr));

SmartPtr<IDxcBlob> pdbOut;
SmartPtr<IDxcBlobUtf16> pdbName;
SmartPtr<IDxcBlobWide> pdbName;
if (generatePdb)
{
DX_OK(results->GetOutput(
DXC_OUT_PDB,
__uuidof(IDxcBlob),
(void**)&pdbOut,
(IDxcBlobUtf16**)(&pdbName)));
(IDxcBlobWide**)(&pdbName)));
}

if (shaderOut != nullptr)
Expand Down

0 comments on commit 206738a

Please sign in to comment.