From 5a52b1ce2b377b521707f36307924b6184d40cf2 Mon Sep 17 00:00:00 2001 From: Jack Palevich Date: Mon, 19 Jul 2010 17:39:52 -0700 Subject: [PATCH] Write test timings to /sdcard/glperf.csv Change-Id: If09e209a9d8049f03320dbd7df257137bf06949e --- opengl/tests/gl_perfapp/AndroidManifest.xml | 4 +++- opengl/tests/gl_perfapp/jni/gl_code.cpp | 21 +++++++++++++++++++-- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/opengl/tests/gl_perfapp/AndroidManifest.xml b/opengl/tests/gl_perfapp/AndroidManifest.xml index df50b99979afd..305d95f210679 100644 --- a/opengl/tests/gl_perfapp/AndroidManifest.xml +++ b/opengl/tests/gl_perfapp/AndroidManifest.xml @@ -19,8 +19,10 @@ --> + package="com.android.glperf" + android:versionName="1.0.0" android:versionCode="10000" > + #include +FILE * out; + static void printGLString(const char *name, GLenum s) { const char *v = (const char *) glGetString(s); LOGI("GL %s = %s\n", name, v); @@ -122,6 +124,7 @@ void endTimer(const char *str, int w, int h, double dc, int count) { double dc60 = pixels / delta / (w * h) / 60; LOGI("%s, %f, %f\n", str, mpps, dc60); + if (out) fprintf(out, "%s, %f, %f\r\n", str, mpps, dc60); } static const char gVertexShader[] = @@ -247,7 +250,7 @@ static void setupVA() { ////////////////////////// -// Tells us what to draw next +// Width and height of the screen uint32_t w; uint32_t h; @@ -259,6 +262,8 @@ const int doLoopStates = 2; const int doSingleTestStates = 2; bool done; +// Saves the parameters of the test (so we can print them out when we finish the timing.) + char saveBuf[1024]; static void doLoop(uint32_t w, uint32_t h, const char *str) { @@ -386,8 +391,13 @@ void doTest(uint32_t w, uint32_t h) { testSubState = testState % 8; } if (texCount >= 3) { - // LOGI("done\n"); + LOGI("done\n"); + if (out) { + fclose(out); + out = NULL; + } done = true; + exit(0); return; } @@ -436,8 +446,15 @@ JNIEXPORT void JNICALL Java_com_android_glperf_GLPerfLib_init(JNIEnv * env, jobj done = false; setupVA(); genTextures(); + const char* fileName = "/sdcard/glperf.csv"; + LOGI("Writing to: %s\n",fileName); + out = fopen(fileName, "w"); + if (out == NULL) { + LOGE("Could not open: %s\n", fileName); + } LOGI("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n"); + if (out) fprintf(out,"\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\r\n"); } JNIEXPORT void JNICALL Java_com_android_glperf_GLPerfLib_step(JNIEnv * env, jobject obj)