Lines Matching refs:m_context

149 	bool useRGB = m_context.getRenderTarget().getPixelFormat().alphaBits == 0;
169 m_viewportW = de::min<int>(m_context.getRenderTarget().getWidth(), MAX_VIEWPORT_WIDTH);
170 m_viewportH = de::min<int>(m_context.getRenderTarget().getHeight(), MAX_VIEWPORT_HEIGHT);
181 m_renderer = new QuadRenderer(m_context.getRenderContext(), glu::GLSL_VERSION_100_ES);
210 int viewportX = rnd.getInt(0, m_context.getRenderTarget().getWidth() - m_viewportW);
211 int viewportY = rnd.getInt(0, m_context.getRenderTarget().getHeight() - m_viewportH);
263 glu::readPixels(m_context.getRenderContext(), viewportX, viewportY, renderedImg.getAccess());
267 UVec4 compareThreshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold().toIVec().asUint()
276 m_context.getTestContext().setTestResult(QP_TEST_RESULT_FAIL, "Image compare failed");
288 m_context.getTestContext().setTestResult(QP_TEST_RESULT_PASS, "Passed");
341 TestCaseGroup* group = new TestCaseGroup(m_context, "equation_src_func_dst_func", "Combinations of Blend Equations and Functions");
364 group->addChild(new BlendCase(m_context, name.c_str(), description.c_str(), paramSets));
372 TestCaseGroup* mainGroup = new TestCaseGroup(m_context, "rgb_func_alpha_func", "Combinations of RGB and Alpha Functions");
374 TestCaseGroup* srcGroup = new TestCaseGroup(m_context, "src", "Source functions");
375 TestCaseGroup* dstGroup = new TestCaseGroup(m_context, "dst", "Destination functions");
416 curGroup->addChild(new BlendCase(m_context, name.c_str(), description.c_str(), paramSets));
423 TestCaseGroup* group = new TestCaseGroup(m_context, "rgb_equation_alpha_equation", "Combinations of RGB and Alpha Equation Combinations");
440 group->addChild(new BlendCase(m_context, name.c_str(), description.c_str(), paramSets));