1/*-------------------------------------------------------------------------
2 * drawElements Quality Program OpenGL ES 3.1 Module
3 * -------------------------------------------------
4 *
5 * Copyright 2014 The Android Open Source Project
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *      http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 *//*!
20 * \file
21 * \brief OpenGL ES 3.1 test context.
22 *//*--------------------------------------------------------------------*/
23
24#include "tes31Context.hpp"
25#include "gluRenderContext.hpp"
26#include "gluRenderConfig.hpp"
27#include "gluFboRenderContext.hpp"
28#include "gluES3PlusWrapperContext.hpp"
29#include "gluContextInfo.hpp"
30#include "gluDummyRenderContext.hpp"
31#include "tcuCommandLine.hpp"
32
33namespace deqp
34{
35namespace gles31
36{
37
38Context::Context (tcu::TestContext& testCtx)
39	: m_testCtx		(testCtx)
40	, m_renderCtx	(DE_NULL)
41	, m_contextInfo	(DE_NULL)
42{
43	if (m_testCtx.getCommandLine().getRunMode() == tcu::RUNMODE_EXECUTE)
44		createRenderContext();
45	else
46		m_renderCtx = new glu::DummyRenderContext();
47}
48
49Context::~Context (void)
50{
51	destroyRenderContext();
52}
53
54void Context::createRenderContext (void)
55{
56	DE_ASSERT(!m_renderCtx && !m_contextInfo);
57
58	try
59	{
60		try
61		{
62			m_renderCtx		= glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(3, 2));
63		}
64		catch (...)
65		{
66			m_renderCtx		= glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(3, 1));
67		}
68		m_contextInfo	= glu::ContextInfo::create(*m_renderCtx);
69	}
70	catch (...)
71	{
72		destroyRenderContext();
73		throw;
74	}
75}
76
77void Context::destroyRenderContext (void)
78{
79	delete m_contextInfo;
80	delete m_renderCtx;
81
82	m_contextInfo	= DE_NULL;
83	m_renderCtx		= DE_NULL;
84}
85
86const tcu::RenderTarget& Context::getRenderTarget (void) const
87{
88	return m_renderCtx->getRenderTarget();
89}
90
91} // gles31
92} // deqp
93