(path, platforms, shader_models, compiler, warnings, extra_args, staging)
| 103 | |
| 104 | |
| 105 | def get_outputs(path, platforms, shader_models, compiler, warnings, extra_args, staging): |
| 106 | for platform in platforms: |
| 107 | for sm in shader_models: |
| 108 | yield WorkItem(path, platform, sm, compiler, warnings, extra_args, staging) |
| 109 | |
| 110 | |
| 111 | class WorkItemProcessor: |