Lines Matching defs:mode
173 /** @brief Test that glBeginConditionalRender accept mode.
175 * @param [in] mode Render condition mode.
179 bool gl4cts::ConditionalRenderInverted::CoverageTest::test(glw::GLenum mode)
188 gl.beginConditionalRender(m_qo_id, mode);
206 << "glBeginConditionalRender failed when used with mode "
207 << Utilities::modeToChars(mode) << "." << tcu::TestLog::EndMessage;
299 << "). The tested mode was " << Utilities::modeToChars(modes[k])
553 * @param [in] condition_mode_or_query_target The param needed by query or conditional block - target or mode.
748 /** @brief Return string representation of condional rendering mode.
750 * @param [in] mode Render condition mode.
752 * @return Constant C-String representation of mode.
754 const glw::GLchar* gl4cts::ConditionalRenderInverted::Utilities::modeToChars(glw::GLenum mode)
761 static const glw::GLchar* invalid_mode_name = "unknow mode";
764 if (GL_QUERY_WAIT_INVERTED == mode)
769 if (GL_QUERY_NO_WAIT_INVERTED == mode)
774 if (GL_QUERY_BY_REGION_WAIT_INVERTED == mode)
779 if (GL_QUERY_BY_REGION_NO_WAIT_INVERTED == mode)
790 * @param [in] mode Render condition mode.
792 * @return Constant C-String representation of mode.
794 const glw::GLchar* gl4cts::ConditionalRenderInverted::Utilities::queryTargetToChars(glw::GLenum mode)
799 static const glw::GLchar* invalid_target_name = "unknow mode";
802 if (GL_ANY_SAMPLES_PASSED == mode)
807 if (GL_SAMPLES_PASSED == mode)