blob: 3f8faca87d0e1788d7abdce33cb2d9d86be7302d [file] [log] [blame]
Jason Sams53a93d52010-07-09 15:34:32 -07001/*
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>
Andy McFadden35620f52010-07-12 09:17:13 -070022#include <string.h>
Jason Sams53a93d52010-07-09 15:34:32 -070023
24#include <GLES2/gl2.h>
25#include <GLES2/gl2ext.h>
26#include <utils/Timers.h>
27#include <EGL/egl.h>
Jason Sams744f37f2010-07-20 19:37:58 -070028#include <utils/Log.h>
Jason Sams53a93d52010-07-09 15:34:32 -070029
30
31using namespace android;
32
Jason Sams53a93d52010-07-09 15:34:32 -070033
Jason Sams744f37f2010-07-20 19:37:58 -070034#include "fill_common.cpp"
Jason Sams53a93d52010-07-09 15:34:32 -070035
Jason Sams53a93d52010-07-09 15:34:32 -070036
37bool doTest(uint32_t w, uint32_t h) {
Jason Samsd997f712010-09-08 15:22:06 -070038 gWidth = w;
39 gHeight = h;
Jason Sams53a93d52010-07-09 15:34:32 -070040 setupVA();
41 genTextures();
42
Jason Sams93bab392010-07-12 11:41:46 -070043 printf("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n");
44
Jason Samsd997f712010-09-08 15:22:06 -070045 for (uint32_t num = 0; num < gFragmentTestCount; num++) {
46 doSingleTest(num, 2);
47 if (gFragmentTests[num]->texCount) {
48 doSingleTest(num, 1);
Jason Sams53a93d52010-07-09 15:34:32 -070049 }
50 }
51
52 exit(0);
53 return true;
54}