Lines Matching refs:steps
274 /* Tests are defined as ordered series of steps that each expect a specific current framebuffer status
275 after being executed. A new TestContext instance (parameter) is created for each test but all steps
277 between steps. */
604 [](vector<TestStep>& steps, TestContext& testContext) // StepsGeneratorFn stepsGenerator
610 steps.reserve(steps.size() + 2 * maxColorAttachmentsCount);
613 steps.push_back(
622 steps.push_back(
642 [](vector<TestStep>& steps, TestContext& testContext) // StepsGeneratorFn stepsGenerator
648 steps.push_back(
656 steps.push_back(
671 steps.push_back(
768 [](vector<TestStep>& steps, TestContext& testContext) // StepsGeneratorFn stepsGenerator
774 steps.push_back(
778 // Set up textures and renderbuffers for all following steps, complete = (tex0, rbo1) or (tex1, rbo0) */
808 steps.push_back(
819 steps.push_back(
828 steps.push_back(
837 steps.push_back(
846 steps.push_back(
857 steps.push_back(
1088 [](vector<TestStep>& steps, TestContext&) // StepsGeneratorFn stepsGenerator
1091 steps.push_back(
1099 steps.push_back(
1128 [](vector<TestStep>& steps, TestContext&) // StepsGeneratorFn stepsGenerator
1131 steps.push_back(
1139 steps.push_back(
1156 steps.push_back(
1164 steps.push_back(
1357 auto steps = vector<TestStep>(m_params.initialSteps);
1359 m_params.stepsGenerator(steps, context);
1361 if (steps.empty())
1368 for (const auto& step : steps)