summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-06-03 12:10:22 +0300
committerAndrei Karas <akaras@inbox.ru>2014-06-03 12:10:22 +0300
commitd3e2725ac3f8832bc34b879286d31b631f8069c9 (patch)
tree598646ac325902771749599556156c3dfcce11af /src
parent1bc3956ffd2d62a57db6b6b5c841f8931fcf4d31 (diff)
downloadplus-d3e2725ac3f8832bc34b879286d31b631f8069c9.tar.gz
plus-d3e2725ac3f8832bc34b879286d31b631f8069c9.tar.bz2
plus-d3e2725ac3f8832bc34b879286d31b631f8069c9.tar.xz
plus-d3e2725ac3f8832bc34b879286d31b631f8069c9.zip
Replace fastopengl into normalopengl in some functions.
Diffstat (limited to 'src')
-rw-r--r--src/test/testmain.cpp44
-rw-r--r--src/test/testmain.h4
2 files changed, 24 insertions, 24 deletions
diff --git a/src/test/testmain.cpp b/src/test/testmain.cpp
index cf50f2959..9ef4fdc23 100644
--- a/src/test/testmain.cpp
+++ b/src/test/testmain.cpp
@@ -76,7 +76,7 @@ int TestMain::exec(const bool testAudio)
int soundTest = -1;
int rescaleTest[3];
int softFps = 0;
- int fastOpenGLFps = 0;
+ int normalOpenGLFps = 0;
int safeOpenGLFps = 0;
int textureSize1 = 1024;
int textureSize3 = 1024;
@@ -92,7 +92,7 @@ int TestMain::exec(const bool testAudio)
if (!videoDetectTest)
detectMode = readValue2(99);
- int fastOpenGLTest = invokeFastOpenGLRenderTest("2");
+ int normalOpenGLTest = invokeNormalOpenGLRenderTest("2");
int safeOpenGLTest = invokeSafeOpenGLRenderTest("3");
if (testAudio)
soundTest = invokeTest4();
@@ -100,7 +100,7 @@ int TestMain::exec(const bool testAudio)
soundTest = 1;
info.append(strprintf("%d.%d,%d,%d.", soundTest, softwareTest,
- fastOpenGLTest, safeOpenGLTest));
+ normalOpenGLTest, safeOpenGLTest));
if (!softwareTest)
{
@@ -127,28 +127,28 @@ int TestMain::exec(const bool testAudio)
}
}
info.append(".");
- if (!fastOpenGLTest)
+ if (!normalOpenGLTest)
{
- int fastOpenGLFpsTest = invokeFastOpenGLRenderTest("9");
- info.append(strprintf("%d", fastOpenGLFpsTest));
- if (!fastOpenGLFpsTest)
+ int normalOpenGLFpsTest = invokeNormalOpenGLRenderTest("9");
+ info.append(strprintf("%d", normalOpenGLFpsTest));
+ if (!normalOpenGLFpsTest)
{
- fastOpenGLFps = readValue2(9);
- info.append(strprintf(",%d", fastOpenGLFps));
- if (!fastOpenGLFps)
+ normalOpenGLFps = readValue2(9);
+ info.append(strprintf(",%d", normalOpenGLFps));
+ if (!normalOpenGLFps)
{
- fastOpenGLTest = -1;
- fastOpenGLFpsTest = -1;
+ normalOpenGLTest = -1;
+ normalOpenGLFpsTest = -1;
}
else
{
- rescaleTest[1] = invokeFastOpenGLRenderTest("6");
+ rescaleTest[1] = invokeNormalOpenGLRenderTest("6");
info.append(strprintf(",%d", rescaleTest[1]));
}
}
else
{
- fastOpenGLTest = -1;
+ normalOpenGLTest = -1;
}
}
info.append(".");
@@ -179,10 +179,10 @@ int TestMain::exec(const bool testAudio)
info.append(".");
int maxFps = softFps;
- if (maxFps < fastOpenGLFps)
+ if (maxFps < normalOpenGLFps)
{
openGLMode = RENDER_NORMAL_OPENGL;
- maxFps = fastOpenGLFps;
+ maxFps = normalOpenGLFps;
}
if (maxFps < safeOpenGLFps)
{
@@ -196,12 +196,12 @@ int TestMain::exec(const bool testAudio)
if (openGLMode == RENDER_NORMAL_OPENGL
|| openGLMode == RENDER_GLES_OPENGL)
{
- if (!invokeFastOpenBatchTest("11"))
+ if (!invokeNormalOpenBatchTest("11"))
batchSize = readValue2(11);
if (batchSize < 256)
batchSize = 256;
- if (!invokeFastOpenBatchTest("14"))
+ if (!invokeNormalOpenBatchTest("14"))
textureSize1 = readValue2(14);
// if (!invokeMobileOpenBatchTest("15"))
// textureSize2 = readValue2(15);
@@ -217,9 +217,9 @@ int TestMain::exec(const bool testAudio)
if (!invokeSafeOpenBatchTest("16"))
textureSize3 = readValue2(16);
textureSize1 = textureSize3;
- if (fastOpenGLTest != -1)
+ if (normalOpenGLTest != -1)
{
- if (!invokeFastOpenBatchTest("14"))
+ if (!invokeNormalOpenBatchTest("14"))
textureSize1 = readValue2(14);
}
info.append(strprintf(",%d,%d,-", textureSize1, textureSize3));
@@ -334,7 +334,7 @@ int TestMain::invokeSoftwareRenderTest(const std::string &test)
return ret;
}
-int TestMain::invokeFastOpenGLRenderTest(const std::string &test)
+int TestMain::invokeNormalOpenGLRenderTest(const std::string &test)
{
mConfig.setValue("opengl", static_cast<int>(RENDER_NORMAL_OPENGL));
mConfig.write();
@@ -343,7 +343,7 @@ int TestMain::invokeFastOpenGLRenderTest(const std::string &test)
return ret;
}
-int TestMain::invokeFastOpenBatchTest(const std::string &test)
+int TestMain::invokeNormalOpenBatchTest(const std::string &test)
{
mConfig.setValue("opengl", static_cast<int>(RENDER_NORMAL_OPENGL));
mConfig.write();
diff --git a/src/test/testmain.h b/src/test/testmain.h
index 1eed577a0..bab01c7f3 100644
--- a/src/test/testmain.h
+++ b/src/test/testmain.h
@@ -60,9 +60,9 @@ class TestMain final
int invokeSoftwareRenderTest(const std::string &test);
- int invokeFastOpenGLRenderTest(const std::string &test);
+ int invokeNormalOpenGLRenderTest(const std::string &test);
- int invokeFastOpenBatchTest(const std::string &test);
+ int invokeNormalOpenBatchTest(const std::string &test);
int invokeMobileOpenBatchTest(const std::string &test);