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
29namespace deqp
30{
31namespace gles2
32{
33namespace Functional
34{
35namespace
36{
37
38using de::MovePtr;
39using glu::RenderContext;
40namespace lt = gls::LifetimeTests;
41using namespace lt;
42using namespace glw;
43
44class TestGroup : public TestCaseGroup
45{
46public:
47							TestGroup		(Context& context)
48								: TestCaseGroup	(context, "lifetime", "Object lifetime tests")
49							{}
50	void					init			(void);
51
52private:
53	MovePtr<Types>			m_types;
54};
55
56void 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
67TestCaseGroup* createLifetimeTests (Context& context)
68{
69	return new TestGroup(context);
70}
71
72} // Functional
73} // gles2
74} // deqp
75