commit | 3c1dfb5a02a049faa06386d2d51c78308d10c468 | [log] [tgz] |
---|---|---|
author | Olli Etuaho <oetuaho@nvidia.com> | Fri Feb 20 11:34:03 2015 +0200 |
committer | Olli Etuaho <oetuaho@nvidia.com> | Thu Feb 26 08:43:51 2015 +0000 |
tree | 53217f049e74fca4d6aa2151b75b49ebc63a8f7a | |
parent | b1f435e4b1b05e52a12c890b0e91b4bd0b134a4d [diff] [blame] |
Add stubs for switch and case output BUG=angle:921 Change-Id: I58bd645a8d53ef5bad9b680e54c8948d50932fca Reviewed-on: https://chromium-review.googlesource.com/251525 Reviewed-by: Zhenyao Mo <zmo@chromium.org> Tested-by: Olli Etuaho <oetuaho@nvidia.com> Reviewed-by: Jamie Madill <jmadill@chromium.org>
diff --git a/src/compiler/translator/OutputGLSLBase.cpp b/src/compiler/translator/OutputGLSLBase.cpp index 175edbd..a3db2ee 100644 --- a/src/compiler/translator/OutputGLSLBase.cpp +++ b/src/compiler/translator/OutputGLSLBase.cpp
@@ -638,6 +638,18 @@ return false; } +bool TOutputGLSLBase::visitSwitch(Visit, TIntermSwitch *) +{ + UNIMPLEMENTED(); + return false; +} + +bool TOutputGLSLBase::visitCase(Visit, TIntermCase *) +{ + UNIMPLEMENTED(); + return false; +} + bool TOutputGLSLBase::visitAggregate(Visit visit, TIntermAggregate *node) { bool visitChildren = true;