blob: 4135c6252f66a82539fb63d8063a9b450d6c57ed [file] [log] [blame]
Jason Samse448dd12010-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 McFaddena5c381f2010-07-12 09:17:13 -070022#include <string.h>
Jason Samse448dd12010-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 Sams79209872010-07-20 19:37:58 -070028#include <utils/Log.h>
Jason Samse448dd12010-07-09 15:34:32 -070029
Jason Sams79209872010-07-20 19:37:58 -070030#include "fill_common.cpp"
Jason Samse448dd12010-07-09 15:34:32 -070031
Jason Samse448dd12010-07-09 15:34:32 -070032
33bool doTest(uint32_t w, uint32_t h) {
Jason Sams74b28e42010-09-08 15:22:06 -070034 gWidth = w;
35 gHeight = h;
Jason Samse448dd12010-07-09 15:34:32 -070036 setupVA();
37 genTextures();
38
Jason Samse0f1cff2010-07-12 11:41:46 -070039 printf("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n");
40
Jason Sams74b28e42010-09-08 15:22:06 -070041 for (uint32_t num = 0; num < gFragmentTestCount; num++) {
42 doSingleTest(num, 2);
43 if (gFragmentTests[num]->texCount) {
44 doSingleTest(num, 1);
Jason Samse448dd12010-07-09 15:34:32 -070045 }
46 }
47
48 exit(0);
49 return true;
50}