mirror of
https://github.com/intel/intel-graphics-compiler.git
synced 2025-10-30 08:18:26 +08:00
19 lines
506 B
C++
19 lines
506 B
C++
/*========================== begin_copyright_notice ============================
|
|
|
|
Copyright (C) 2017-2021 Intel Corporation
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
============================= end_copyright_notice ===========================*/
|
|
|
|
#pragma once
|
|
|
|
#include "common/LLVMWarningsPush.hpp"
|
|
#include <llvm/Pass.h>
|
|
#include "common/LLVMWarningsPop.hpp"
|
|
|
|
namespace IGC {
|
|
llvm::ModulePass *CreateRayTracingShaderLowering();
|
|
void initializeRayTracingShaderLoweringPass(llvm::PassRegistry &);
|
|
} // namespace IGC
|