Lines Matching refs:format
1083 GLenum format;
1089 if ((first.format != second.format) || (first.data.size() != second.data.size()))
1106 bool isFormatSupported (const glw::GLenum format) const;
1147 bool ProgramBinaryCase::isFormatSupported (const glw::GLenum format) const
1149 return (std::find(m_formats.begin(), m_formats.end(), format) != m_formats.end());
1160 GLenum format;
1165 GLU_CHECK_CALL(glGetProgramBinary(program, (GLsizei)out.data.size(), &actualLength, &format, &(out.data[0])));
1169 out.format = format;
1175 glProgramBinary(program, binary.format, &binary.data[0], (GLsizei)binary.data.size());
1183 if (!isFormatSupported(binary.format))
1185 log << TestLog::Message << "Program binary format " << binary.format << " is not among the supported formats reported by the platform." << TestLog::EndMessage;
1187 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Invalid format");