DxilConvergent.h 821 B

12345678910111213141516171819
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // //
  3. // DxilConvergent.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. ///////////////////////////////////////////////////////////////////////////////
  9. #pragma once
  10. namespace llvm {
  11. class Value;
  12. class Function;
  13. }
  14. namespace hlsl {
  15. bool IsConvergentMarker(llvm::Value *V);
  16. llvm::Value *GetConvergentSource(llvm::Value *V);
  17. }