1 /*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <stdlib.h>
18 #include <stdio.h>
19 #include <time.h>
20 #include <sched.h>
21 #include <sys/resource.h>
22 #include <string.h>
23
24 #include <GLES2/gl2.h>
25 #include <GLES2/gl2ext.h>
26 #include <utils/Timers.h>
27 #include <EGL/egl.h>
28 #include <utils/Log.h>
29
30 #include "fill_common.cpp"
31
32
doTest(uint32_t w,uint32_t h)33 bool doTest(uint32_t w, uint32_t h) {
34 gWidth = w;
35 gHeight = h;
36 setupVA();
37 genTextures();
38
39 printf("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n");
40
41 for (uint32_t num = 0; num < gFragmentTestCount; num++) {
42 doSingleTest(num, 2);
43 if (gFragmentTests[num]->texCount) {
44 doSingleTest(num, 1);
45 }
46 }
47
48 exit(0);
49 return true;
50 }
51