diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-06-20 12:14:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-20 12:14:31 -0700 |
| commit | 338232bff7144c6a0e7964984765f01d9f9eecb7 (patch) | |
| tree | e62d8f184bf04df0906fcc6c8a04803febe35376 /source/slang/parameter-binding.h | |
| parent | 40617db15d87ece6e7cc88da23f747f8f827c69a (diff) | |
| parent | 327f2b7ec50a7480b458d6d3ba8e2ca7fcdb8498 (diff) | |
Merge pull request #36 from tfoleyNV/entry-point-indexing
Overhaul handling of entry points and translation units.
Diffstat (limited to 'source/slang/parameter-binding.h')
| -rw-r--r-- | source/slang/parameter-binding.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/parameter-binding.h b/source/slang/parameter-binding.h index 2fff08090..66c8053d3 100644 --- a/source/slang/parameter-binding.h +++ b/source/slang/parameter-binding.h @@ -8,7 +8,7 @@ namespace Slang { -class CollectionOfTranslationUnits; +class CompileRequest; // The parameter-binding interface is responsible for assigning // binding locations/registers to every parameter of a shader @@ -23,8 +23,8 @@ class CollectionOfTranslationUnits; // and attach that information to the syntax nodes // of the program. -void GenerateParameterBindings( - CollectionOfTranslationUnits* program); +void generateParameterBindings( + CompileRequest* compileRequest); } |
