• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program OpenGL ES 2.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 Object lifetime tests.
22  *//*--------------------------------------------------------------------*/
23 
24 #include "es2fLifetimeTests.hpp"
25 
26 #include "deUniquePtr.hpp"
27 #include "glsLifetimeTests.hpp"
28 
29 namespace deqp
30 {
31 namespace gles2
32 {
33 namespace Functional
34 {
35 namespace
36 {
37 
38 using de::MovePtr;
39 using glu::RenderContext;
40 namespace lt = gls::LifetimeTests;
41 using namespace lt;
42 using namespace glw;
43 
44 class TestGroup : public TestCaseGroup
45 {
46 public:
TestGroup(Context & context)47 							TestGroup		(Context& context)
48 								: TestCaseGroup	(context, "lifetime", "Object lifetime tests")
49 							{}
50 	void					init			(void);
51 
52 private:
53 	MovePtr<Types>			m_types;
54 };
55 
init(void)56 void TestGroup::init (void)
57 {
58 	gles2::Context&	ctx		= getContext();
59 	lt::Context		ltCtx	(ctx.getRenderContext(), ctx.getTestContext());
60 
61 	m_types = MovePtr<Types>(new ES2Types(ltCtx));
62 	addTestCases(*this, *m_types);
63 }
64 
65 } // anonymous
66 
createLifetimeTests(Context & context)67 TestCaseGroup* createLifetimeTests (Context& context)
68 {
69 	return new TestGroup(context);
70 }
71 
72 } // Functional
73 } // gles2
74 } // deqp
75