CGHLSLRuntime.cpp 1.1 KB

1234567891011121314151617181920212223
  1. //===----- CGHLSLRuntime.cpp - Interface to HLSL Runtime ----------------===//
  2. ///////////////////////////////////////////////////////////////////////////////
  3. // //
  4. // CGHLSLRuntime.cpp //
  5. // Copyright (C) Microsoft Corporation. All rights reserved. //
  6. // This file is distributed under the University of Illinois Open Source //
  7. // License. See LICENSE.TXT for details. //
  8. // //
  9. // This provides a class for HLSL code generation. //
  10. // //
  11. ///////////////////////////////////////////////////////////////////////////////
  12. #include "clang/AST/ASTContext.h"
  13. #include "clang/AST/DeclTemplate.h"
  14. #include "clang/AST/HlslTypes.h"
  15. #include "clang/AST/Type.h"
  16. #include "CGHLSLRuntime.h"
  17. using namespace clang;
  18. using namespace CodeGen;
  19. CGHLSLRuntime::~CGHLSLRuntime() {}