sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Testing of eglEndpointDirtyAreaNOK functionality.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
/**
|
sl@0
|
18 |
@file
|
sl@0
|
19 |
@test
|
sl@0
|
20 |
@internalComponent - Internal Symbian test code
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "egltest_endpointdirtyarea.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
static const TTestCase KDirtyAreaPositiveCases[] =
|
sl@0
|
26 |
{
|
sl@0
|
27 |
{
|
sl@0
|
28 |
TESTIDS("614"),
|
sl@0
|
29 |
CASETITLE("Functional: Positive: eglGetEndpointDirtyArea basic test."),
|
sl@0
|
30 |
SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
|
sl@0
|
31 |
{
|
sl@0
|
32 |
{ EInitializeCase, 0, EGL_SUCCESS },
|
sl@0
|
33 |
{ ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
|
sl@0
|
34 |
{ ECreateEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
35 |
{ EDrawContentCase, 0, EGL_SUCCESS },
|
sl@0
|
36 |
{ EContentUpdateCase, 0, EGL_SUCCESS },
|
sl@0
|
37 |
{ EBeginStreamingCase, 0, EGL_SUCCESS },
|
sl@0
|
38 |
{ EAcquireImageCase, 0, EGL_SUCCESS },
|
sl@0
|
39 |
{ EGetEndpointDirtyAreaCase, 0, EGL_SUCCESS, 0, 0, 0, 1 },
|
sl@0
|
40 |
{ EReleaseImageCase, 0, EGL_SUCCESS },
|
sl@0
|
41 |
{ EDestroyEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
42 |
{ ETerminateCase, 0, EGL_SUCCESS },
|
sl@0
|
43 |
{ EFinishedCase }
|
sl@0
|
44 |
},
|
sl@0
|
45 |
},
|
sl@0
|
46 |
{
|
sl@0
|
47 |
TESTIDS("615"),
|
sl@0
|
48 |
CASETITLE("Functional: Positive: eglGetEndpointDirtyArea simple working test - collapse area."),
|
sl@0
|
49 |
SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
|
sl@0
|
50 |
{
|
sl@0
|
51 |
{ EInitializeCase, 0, EGL_SUCCESS },
|
sl@0
|
52 |
{ ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
|
sl@0
|
53 |
{ ECreateEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
54 |
{ EDrawContentCase, 0, EGL_SUCCESS },
|
sl@0
|
55 |
{ EContentUpdateCase, 0, EGL_SUCCESS },
|
sl@0
|
56 |
{ EBeginStreamingCase, 0, EGL_SUCCESS },
|
sl@0
|
57 |
{ EAcquireImageCase, 0, EGL_SUCCESS },
|
sl@0
|
58 |
{ EGetEndpointDirtyAreaCase, EUseCollapseArea, EGL_SUCCESS, 0, 0, 0, 2 },
|
sl@0
|
59 |
{ EReleaseImageCase, 0, EGL_SUCCESS },
|
sl@0
|
60 |
{ EDestroyEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
61 |
{ ETerminateCase, 0, EGL_SUCCESS },
|
sl@0
|
62 |
{ EFinishedCase }
|
sl@0
|
63 |
},
|
sl@0
|
64 |
},
|
sl@0
|
65 |
{
|
sl@0
|
66 |
TESTIDS("617"),
|
sl@0
|
67 |
CASETITLE("Functional: Positive: eglGetEndpointDirtyArea - check number of rects avialable"),
|
sl@0
|
68 |
SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
|
sl@0
|
69 |
{
|
sl@0
|
70 |
{ EInitializeCase, 0, EGL_SUCCESS },
|
sl@0
|
71 |
{ ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
|
sl@0
|
72 |
{ ECreateEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
73 |
{ EDrawContentCase, 0, EGL_SUCCESS },
|
sl@0
|
74 |
{ EContentUpdateCase, 0, EGL_SUCCESS },
|
sl@0
|
75 |
{ EBeginStreamingCase, 0, EGL_SUCCESS },
|
sl@0
|
76 |
{ EAcquireImageCase, 0, EGL_SUCCESS },
|
sl@0
|
77 |
{ EGetEndpointDirtyAreaCase, EUseNullRects, EGL_SUCCESS, 0, 0, 0, 0 },
|
sl@0
|
78 |
{ EReleaseImageCase, 0, EGL_SUCCESS },
|
sl@0
|
79 |
{ EDestroyEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
80 |
{ ETerminateCase, 0, EGL_SUCCESS },
|
sl@0
|
81 |
{ EFinishedCase }
|
sl@0
|
82 |
},
|
sl@0
|
83 |
},
|
sl@0
|
84 |
};
|
sl@0
|
85 |
static const TTestCase KDirtyAreaNegativeCases[] =
|
sl@0
|
86 |
{
|
sl@0
|
87 |
{
|
sl@0
|
88 |
TESTIDS("616"),
|
sl@0
|
89 |
CASETITLE("Functional: Negative: eglRequestNotification bad parameter test."),
|
sl@0
|
90 |
SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
|
sl@0
|
91 |
{
|
sl@0
|
92 |
{ EInitializeCase, 0, EGL_SUCCESS },
|
sl@0
|
93 |
{ ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
|
sl@0
|
94 |
{ ECreateEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
95 |
{ EDrawContentCase, 0, EGL_SUCCESS },
|
sl@0
|
96 |
{ EContentUpdateCase, 0, EGL_SUCCESS },
|
sl@0
|
97 |
{ EBeginStreamingCase, 0, EGL_SUCCESS },
|
sl@0
|
98 |
{ EAcquireImageCase, 0, EGL_SUCCESS },
|
sl@0
|
99 |
// Bad display
|
sl@0
|
100 |
{ EGetEndpointDirtyAreaCase, EUseBadDisplay, EGL_BAD_DISPLAY },
|
sl@0
|
101 |
{ EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY },
|
sl@0
|
102 |
{ EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadRects, EGL_BAD_DISPLAY },
|
sl@0
|
103 |
{ EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadEndpoint | EUseBadRects, EGL_BAD_DISPLAY },
|
sl@0
|
104 |
{ EGetEndpointDirtyAreaCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK },
|
sl@0
|
105 |
{ EGetEndpointDirtyAreaCase, EUseBadRects, EGL_BAD_PARAMETER, 0, 0, 0, 1 },
|
sl@0
|
106 |
// All zeros, but not NULL rects -> bad parameter error.
|
sl@0
|
107 |
{ EGetEndpointDirtyAreaCase, EExpectError, EGL_BAD_PARAMETER, 0, 0, 0, 0 },
|
sl@0
|
108 |
{ EDestroyEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
109 |
{ ETerminateCase, 0, EGL_SUCCESS },
|
sl@0
|
110 |
{ EFinishedCase }
|
sl@0
|
111 |
},
|
sl@0
|
112 |
},
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TESTIDS("618"),
|
sl@0
|
115 |
CASETITLE("Functional: Negative: eglRequestNotification no acquired image."),
|
sl@0
|
116 |
SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered),
|
sl@0
|
117 |
{
|
sl@0
|
118 |
{ EInitializeCase, 0, EGL_SUCCESS },
|
sl@0
|
119 |
{ ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
|
sl@0
|
120 |
{ ECreateEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
121 |
{ EDrawContentCase, 0, EGL_SUCCESS },
|
sl@0
|
122 |
{ EContentUpdateCase, 0, EGL_SUCCESS },
|
sl@0
|
123 |
{ EBeginStreamingCase, 0, EGL_SUCCESS },
|
sl@0
|
124 |
{ EGetEndpointDirtyAreaCase, EExpectError, EGL_BAD_ACCESS, 0, 0, 0, 1 },
|
sl@0
|
125 |
{ EGetEndpointDirtyAreaCase, EUseNullRects|EExpectError, EGL_BAD_ACCESS, 0, 0, 0, 0 },
|
sl@0
|
126 |
{ EDestroyEndpointCase, 0, EGL_SUCCESS },
|
sl@0
|
127 |
{ ETerminateCase, 0, EGL_SUCCESS },
|
sl@0
|
128 |
{ EFinishedCase }
|
sl@0
|
129 |
},
|
sl@0
|
130 |
},
|
sl@0
|
131 |
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
static const TTestCases KTestCases[] =
|
sl@0
|
136 |
{
|
sl@0
|
137 |
TestCase(KDirtyAreaPositiveCases),
|
sl@0
|
138 |
TestCase(KDirtyAreaNegativeCases),
|
sl@0
|
139 |
};
|
sl@0
|
140 |
|
sl@0
|
141 |
const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]);
|
sl@0
|
142 |
|
sl@0
|
143 |
CEglTest_LocalTestStep_EndpointDirtyArea::CEglTest_LocalTestStep_EndpointDirtyArea():
|
sl@0
|
144 |
CEgltest_Local_Engine(KTestCases, KNumberTestCases)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
}
|