mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-23 12:10:06 +00:00
58dc37ea6a
Add SpvBuiltInCullMaskKHR to a switch so spirv-tools can compile with the latest headers.
27 lines
762 B
Python
27 lines
762 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': 'ddf5e2bb92957dc8a12c5392f8495333d6844133',
|
|
'googletest_revision': '25dcdc7e8bfac8967f20fb2c0a628f5cf442188d',
|
|
're2_revision': '0c5616df9c0aaa44c9440d87422012423d91c7d1',
|
|
'spirv_headers_revision': 'b765c355f488837ca4c77980ba69484f3ff277f5',
|
|
}
|
|
|
|
deps = {
|
|
'external/effcee':
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
|
|
|
'external/googletest':
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
'external/re2':
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
'external/spirv-headers':
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
Var('spirv_headers_revision'),
|
|
}
|
|
|