| 12 | |
| 13 | |
| 14 | ProgramBinary::ProgramBinary(const GLenum binaryFormat, const std::vector<char> & binaryData) |
| 15 | : ProgramBinary(binaryFormat, new StaticStringSource(binaryData.data(), binaryData.size())) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | ProgramBinary::ProgramBinary(const GLenum binaryFormat, AbstractStringSource * dataSource) |
| 20 | : m_binaryFormat(binaryFormat) |
nothing calls this directly
no test coverage detected