Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BUILD.bazel - github.com/KhronosGroup/SPIRV-Headers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c898ade80a924754b9361bb6dffb3f623cfb2611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package(
    default_visibility = ["//visibility:public"],
)

licenses(["notice"])

exports_files(["LICENSE"])

filegroup(
    name = "spirv_core_grammar_1.0",
    srcs = ["include/spirv/1.0/spirv.core.grammar.json"],
)

filegroup(
    name = "spirv_glsl_grammar_1.0",
    srcs = ["include/spirv/1.0/extinst.glsl.std.450.grammar.json"],
)

filegroup(
    name = "spirv_opencl_grammar_1.0",
    srcs = ["include/spirv/1.0/extinst.opencl.std.100.grammar.json"],
)

filegroup(
    name = "spirv_core_grammar_1.1",
    srcs = ["include/spirv/1.1/spirv.core.grammar.json"],
)

filegroup(
    name = "spirv_glsl_grammar_1.1",
    srcs = ["include/spirv/1.1/extinst.glsl.std.450.grammar.json"],
)

filegroup(
    name = "spirv_opencl_grammar_1.1",
    srcs = ["include/spirv/1.1/extinst.opencl.std.100.grammar.json"],
)

filegroup(
    name = "spirv_core_grammar_1.2",
    srcs = ["include/spirv/1.2/spirv.core.grammar.json"],
)

filegroup(
    name = "spirv_glsl_grammar_1.2",
    srcs = ["include/spirv/1.2/extinst.glsl.std.450.grammar.json"],
)

filegroup(
    name = "spirv_opencl_grammar_1.2",
    srcs = ["include/spirv/1.2/extinst.opencl.std.100.grammar.json"],
)

filegroup(
    name = "spirv_core_grammar_unified1",
    srcs = ["include/spirv/unified1/spirv.core.grammar.json"],
)

filegroup(
    name = "spirv_glsl_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.glsl.std.450.grammar.json"],
)

filegroup(
    name = "spirv_opencl_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.opencl.std.100.grammar.json"],
)

filegroup(
    name = "spirv_xml_registry",
    srcs = ["include/spirv/spir-v.xml"],
)

filegroup(
    name = "spirv_ext_inst_debuginfo_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.debuginfo.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_nonsemantic_clspvreflection_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.nonsemantic.clspvreflection.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_nonsemantic_debugprintf_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.nonsemantic.debugprintf.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_opencl_debuginfo_100_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.opencl.debuginfo.100.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_nonsemantic_shader_debuginfo_100_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.nonsemantic.shader.debuginfo.100.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_spv_amd_gcn_shader_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.spv-amd-gcn-shader.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_spv_amd_shader_ballot_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.spv-amd-shader-ballot.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_spv_amd_shader_explicit_vertex_parameter_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.spv-amd-shader-explicit-vertex-parameter.grammar.json"],
)

filegroup(
    name = "spirv_ext_inst_spv_amd_shader_trinary_minmax_grammar_unified1",
    srcs = ["include/spirv/unified1/extinst.spv-amd-shader-trinary-minmax.grammar.json"],
)

cc_library(
    name = "spirv_common_headers",
    hdrs = [
        "include/spirv/1.0/GLSL.std.450.h",
        "include/spirv/1.0/OpenCL.std.h",
        "include/spirv/1.1/GLSL.std.450.h",
        "include/spirv/1.1/OpenCL.std.h",
        "include/spirv/1.2/GLSL.std.450.h",
        "include/spirv/1.2/OpenCL.std.h",
        "include/spirv/unified1/GLSL.std.450.h",
        "include/spirv/unified1/NonSemanticClspvReflection.h",
        "include/spirv/unified1/NonSemanticDebugPrintf.h",
        "include/spirv/unified1/OpenCL.std.h",
    ],
    includes = ["include"],
)

cc_library(
    name = "spirv_c_headers",
    hdrs = [
        "include/spirv/1.0/spirv.h",
        "include/spirv/1.1/spirv.h",
        "include/spirv/1.2/spirv.h",
        "include/spirv/unified1/spirv.h",
    ],
    includes = ["include"],
    deps = [":spirv_common_headers"],
)

cc_library(
    name = "spirv_cpp_headers",
    hdrs = [
        "include/spirv/1.0/spirv.hpp",
        "include/spirv/1.1/spirv.hpp",
        "include/spirv/1.2/spirv.hpp",
        "include/spirv/unified1/spirv.hpp",
    ],
    includes = ["include"],
    deps = [":spirv_common_headers"],
)

cc_library(
    name = "spirv_cpp11_headers",
    hdrs = [
        "include/spirv/1.0/spirv.hpp11",
        "include/spirv/1.1/spirv.hpp11",
        "include/spirv/1.2/spirv.hpp11",
        "include/spirv/unified1/spirv.hpp11",
    ],
    includes = ["include"],
    deps = [":spirv_common_headers"],
)