DxcPixCompilationInfo.h 1.2 KB

1234567891011121314151617181920212223242526
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // //
  3. // DxcPixCompilationInfo.h //
  4. // Copyright (C) Microsoft Corporation. All rights reserved. //
  5. // This file is distributed under the University of Illinois Open Source //
  6. // License. See LICENSE.TXT for details. //
  7. // //
  8. // Retrieves compilation info such as HLSL entry point, macro defs, etc. //
  9. // from llvm debug metadata //
  10. // //
  11. ///////////////////////////////////////////////////////////////////////////////
  12. #pragma once
  13. #include "dxc/Support/WinIncludes.h"
  14. #include <map>
  15. #include <memory>
  16. #include <vector>
  17. namespace dxil_debug_info {
  18. HRESULT
  19. CreateDxilCompilationInfo(IMalloc *pMalloc, dxil_dia::Session *pSession,
  20. IDxcPixCompilationInfo **ppResult);
  21. } // namespace dxil_debug_info