diff options
| author | Yong He <yonghe@outlook.com> | 2020-06-15 09:05:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-15 09:05:49 -0700 |
| commit | 7e7425de730d7b3f4590c71111e22e5103b53200 (patch) | |
| tree | 9cdaee6b9deb0a94e40526b698ae13a1dc88da36 /source/slang/slang-emit-cpp.cpp | |
| parent | 04a81ab634ce058168f7e1554274bbeb34f3a3c5 (diff) | |
| parent | 90444f8366255f274993ce4699738d9ab7cf4ee1 (diff) | |
Merge branch 'master' into glsl-loop
Diffstat (limited to 'source/slang/slang-emit-cpp.cpp')
| -rw-r--r-- | source/slang/slang-emit-cpp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/slang/slang-emit-cpp.cpp b/source/slang/slang-emit-cpp.cpp index bc82475f4..d7636e5a8 100644 --- a/source/slang/slang-emit-cpp.cpp +++ b/source/slang/slang-emit-cpp.cpp @@ -1559,6 +1559,11 @@ void CPPSourceEmitter::emitParamTypeImpl(IRType* type, String const& name) emitType(type, name); } +void CPPSourceEmitter::emitWitnessTable(IRWitnessTable* witnessTable) +{ + SLANG_UNUSED(witnessTable); +} + bool CPPSourceEmitter::tryEmitGlobalParamImpl(IRGlobalParam* varDecl, IRType* varType) { SLANG_UNUSED(varDecl); |
