summaryrefslogtreecommitdiffstats
path: root/opengl/tests/gl_perf/filltest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'opengl/tests/gl_perf/filltest.cpp')
-rw-r--r--opengl/tests/gl_perf/filltest.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/opengl/tests/gl_perf/filltest.cpp b/opengl/tests/gl_perf/filltest.cpp
index 3d5757f..eb398ec 100644
--- a/opengl/tests/gl_perf/filltest.cpp
+++ b/opengl/tests/gl_perf/filltest.cpp
@@ -132,7 +132,7 @@ void endTimer(const char *str, int w, int h, double dc, int count) {
double mpps = pixels / delta / 1000000;
double dc60 = pixels / delta / (w * h) / 60;
- printf("test %s, Mpps %f, dc = %f\n", str, mpps, dc60);
+ printf("%s, %f, %f\n", str, mpps, dc60);
}
static const char gVertexShader[] =
@@ -319,12 +319,12 @@ static void doSingleTest(uint32_t w, uint32_t h,
glBlendFunc(GL_ONE, GL_ONE);
glDisable(GL_BLEND);
- sprintf(str2, "Test varColor=%i, texCount=%i, modulate=%i, extraMath=%i, texSize=%i, blend=0",
+ sprintf(str2, "%i, %i, %i, %i, %i, 0",
useVarColor, texCount, modulateFirstTex, extraMath, tex0);
doLoop(w, h, str2);
glEnable(GL_BLEND);
- sprintf(str2, "Test varColor=%i, texCount=%i, modulate=%i, extraMath=%i, texSize=%i, blend=1",
+ sprintf(str2, "%i, %i, %i, %i, %i, 1",
useVarColor, texCount, modulateFirstTex, extraMath, tex0);
doLoop(w, h, str2);
}
@@ -361,6 +361,8 @@ bool doTest(uint32_t w, uint32_t h) {
setupVA();
genTextures();
+ printf("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n");
+
for (int texCount = 0; texCount < 3; texCount++) {
for (int extraMath = 0; extraMath < 5; extraMath++) {