diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-07-14 11:31:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 11:31:23 -0700 |
| commit | d9366db8993c566fbb0af780c13db438dbf74022 (patch) | |
| tree | 7f8302ad4eb9558e1260ad8aed048f1292092489 /source/slang/type-layout.h | |
| parent | 47e94a14a174ce501883c85b7c742c10b785b4f5 (diff) | |
| parent | 2bf87743ffe73f041036ae62c8bf53f09215ca53 (diff) | |
Merge pull request #89 from tfoleyNV/glpervertex-location-fix
Don't use "auto locations" mode in glslang
Diffstat (limited to 'source/slang/type-layout.h')
| -rw-r--r-- | source/slang/type-layout.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source/slang/type-layout.h b/source/slang/type-layout.h index add9930ae..d2254c9e5 100644 --- a/source/slang/type-layout.h +++ b/source/slang/type-layout.h @@ -517,10 +517,11 @@ struct LayoutRulesImpl struct LayoutRulesFamilyImpl { - virtual LayoutRulesImpl* getConstantBufferRules() = 0; - virtual LayoutRulesImpl* getTextureBufferRules() = 0; - virtual LayoutRulesImpl* getVaryingInputRules() = 0; - virtual LayoutRulesImpl* getVaryingOutputRules() = 0; + virtual LayoutRulesImpl* getConstantBufferRules() = 0; + virtual LayoutRulesImpl* getPushConstantBufferRules() = 0; + virtual LayoutRulesImpl* getTextureBufferRules() = 0; + virtual LayoutRulesImpl* getVaryingInputRules() = 0; + virtual LayoutRulesImpl* getVaryingOutputRules() = 0; virtual LayoutRulesImpl* getSpecializationConstantRules() = 0; virtual LayoutRulesImpl* getShaderStorageBufferRules() = 0; }; |
