mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 11:40:05 +00:00
4c456f7da6
- Added validation rule to support EXT_mesh_shader from SPIRV 1.4 onwards
27 lines
762 B
Python
27 lines
762 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': 'ddf5e2bb92957dc8a12c5392f8495333d6844133',
|
|
'googletest_revision': '548b13dc3c02b93f60eeff9a0cc6e11c1ea722ca',
|
|
're2_revision': '5723bb8950318135ed9cf4fc76bed988a087f536',
|
|
'spirv_headers_revision': '87d5b782bec60822aa878941e6b13c0a9a954c9b',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|