• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program OpenGL ES 3.0 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.0 test context.
22  *//*--------------------------------------------------------------------*/
23 
24 #include "tes3Context.hpp"
25 #include "gluRenderContext.hpp"
26 #include "gluRenderConfig.hpp"
27 #include "gluFboRenderContext.hpp"
28 #include "gluContextInfo.hpp"
29 #include "tcuCommandLine.hpp"
30 #include "glwWrapper.hpp"
31 
32 namespace deqp
33 {
34 namespace gles3
35 {
36 
Context(tcu::TestContext & testCtx)37 Context::Context (tcu::TestContext& testCtx)
38 	: m_testCtx		(testCtx)
39 	, m_renderCtx	(DE_NULL)
40 	, m_contextInfo	(DE_NULL)
41 {
42 	try
43 	{
44 		m_renderCtx		= glu::createDefaultRenderContext(m_testCtx.getPlatform(), m_testCtx.getCommandLine(), glu::ApiType::es(3,0));
45 		m_contextInfo	= glu::ContextInfo::create(*m_renderCtx);
46 
47 		// Set up function table for transparent wrapper.
48 		glw::setCurrentThreadFunctions(&m_renderCtx->getFunctions());
49 	}
50 	catch (...)
51 	{
52 		glw::setCurrentThreadFunctions(DE_NULL);
53 
54 		delete m_contextInfo;
55 		delete m_renderCtx;
56 
57 		throw;
58 	}
59 }
60 
~Context(void)61 Context::~Context (void)
62 {
63 	// Remove functions from wrapper.
64 	glw::setCurrentThreadFunctions(DE_NULL);
65 
66 	delete m_contextInfo;
67 	delete m_renderCtx;
68 }
69 
getRenderTarget(void) const70 const tcu::RenderTarget& Context::getRenderTarget (void) const
71 {
72 	return m_renderCtx->getRenderTarget();
73 }
74 
75 } // gles3
76 } // deqp
77