Searched defs:ProgramBinaries (Results 1 – 1 of 1) sorted by relevance
440 struct ProgramBinaries struct442 std::vector<ShaderBinary> binaries;444 glw::GLenum binaryFormat;446 ProgramBinaries (void) : binaryFormat(GL_SHADER_BINARY_FORMAT_SPIR_V_ARB) {} in ProgramBinaries() function447 ProgramBinaries (glw::GLenum binaryFormat_) : binaryFormat(binaryFormat_) {} in ProgramBinaries() argument449 …& operator<< (const ShaderBinary& shaderBinary) { binaries.push_back(shaderBinary); return *this; } in operator <<()