Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/llvm/lib/Target/DirectX/DXILConstants.h
35266 views
1
//===- DXILConstants.h - Essential DXIL constants -------------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
///
9
/// \file This file contains essential DXIL constants.
10
//===----------------------------------------------------------------------===//
11
12
#ifndef LLVM_LIB_TARGET_DIRECTX_DXILCONSTANTS_H
13
#define LLVM_LIB_TARGET_DIRECTX_DXILCONSTANTS_H
14
15
namespace llvm {
16
namespace dxil {
17
18
#define DXIL_OP_ENUM
19
#include "DXILOperation.inc"
20
#undef DXIL_OP_ENUM
21
22
} // namespace dxil
23
} // namespace llvm
24
25
#endif
26
27