| 55 | |
| 56 | template<class T> |
| 57 | std::string interfaceName(T symbol) { |
| 58 | return symbol.getType()->getBasicType() == glslang::EbtBlock ? std::string(symbol.getType()->getTypeName().c_str()) : symbol.name; |
| 59 | } |
| 60 | |
| 61 | bool verifyIOMapping(std::string& linkingError, glslang::TProgram& program) { |
| 62 | bool success = true; |
no test coverage detected