Revert "Removed 'AllInternal' part of function name as it is now redundant."
This reverts commit 42e8b2cf4478b40663437df724a2cd292255671f.
This commit is contained in:
parent
1853a0fc4e
commit
416ae8eb7f
@ -274,7 +274,7 @@ TestVolume::~TestVolume()
|
|||||||
* RawVolume Tests
|
* RawVolume Tests
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void TestVolume::testRawVolumeDirectAccessForwards()
|
void TestVolume::testRawVolumeDirectAccessAllInternalForwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
|
|
||||||
@ -285,7 +285,7 @@ void TestVolume::testRawVolumeDirectAccessForwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(199594219));
|
QCOMPARE(result, static_cast<int32_t>(199594219));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testRawVolumeSamplersForwards()
|
void TestVolume::testRawVolumeSamplersAllInternalForwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
|
|
||||||
@ -296,7 +296,7 @@ void TestVolume::testRawVolumeSamplersForwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(199594219));
|
QCOMPARE(result, static_cast<int32_t>(199594219));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testRawVolumeDirectAccessBackwards()
|
void TestVolume::testRawVolumeDirectAccessAllInternalBackwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
|
|
||||||
@ -307,7 +307,7 @@ void TestVolume::testRawVolumeDirectAccessBackwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(-960618300));
|
QCOMPARE(result, static_cast<int32_t>(-960618300));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testRawVolumeSamplersBackwards()
|
void TestVolume::testRawVolumeSamplersAllInternalBackwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
|
|
||||||
@ -322,7 +322,7 @@ void TestVolume::testRawVolumeSamplersBackwards()
|
|||||||
* PagedVolume Tests
|
* PagedVolume Tests
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void TestVolume::testPagedVolumeDirectAccessForwards()
|
void TestVolume::testPagedVolumeDirectAccessAllInternalForwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
QBENCHMARK
|
QBENCHMARK
|
||||||
@ -332,7 +332,7 @@ void TestVolume::testPagedVolumeDirectAccessForwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(199594219));
|
QCOMPARE(result, static_cast<int32_t>(199594219));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testPagedVolumeSamplersForwards()
|
void TestVolume::testPagedVolumeSamplersAllInternalForwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
QBENCHMARK
|
QBENCHMARK
|
||||||
@ -342,7 +342,7 @@ void TestVolume::testPagedVolumeSamplersForwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(199594219));
|
QCOMPARE(result, static_cast<int32_t>(199594219));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testPagedVolumeDirectAccessBackwards()
|
void TestVolume::testPagedVolumeDirectAccessAllInternalBackwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
QBENCHMARK
|
QBENCHMARK
|
||||||
@ -352,7 +352,7 @@ void TestVolume::testPagedVolumeDirectAccessBackwards()
|
|||||||
QCOMPARE(result, static_cast<int32_t>(-960618300));
|
QCOMPARE(result, static_cast<int32_t>(-960618300));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestVolume::testPagedVolumeSamplersBackwards()
|
void TestVolume::testPagedVolumeSamplersAllInternalBackwards()
|
||||||
{
|
{
|
||||||
int32_t result = 0;
|
int32_t result = 0;
|
||||||
QBENCHMARK
|
QBENCHMARK
|
||||||
|
@ -37,15 +37,15 @@ public:
|
|||||||
~TestVolume();
|
~TestVolume();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void testRawVolumeDirectAccessForwards();
|
void testRawVolumeDirectAccessAllInternalForwards();
|
||||||
void testRawVolumeSamplersForwards();
|
void testRawVolumeSamplersAllInternalForwards();
|
||||||
void testRawVolumeDirectAccessBackwards();
|
void testRawVolumeDirectAccessAllInternalBackwards();
|
||||||
void testRawVolumeSamplersBackwards();
|
void testRawVolumeSamplersAllInternalBackwards();
|
||||||
|
|
||||||
void testPagedVolumeDirectAccessForwards();
|
void testPagedVolumeDirectAccessAllInternalForwards();
|
||||||
void testPagedVolumeSamplersForwards();
|
void testPagedVolumeSamplersAllInternalForwards();
|
||||||
void testPagedVolumeDirectAccessBackwards();
|
void testPagedVolumeDirectAccessAllInternalBackwards();
|
||||||
void testPagedVolumeSamplersBackwards();
|
void testPagedVolumeSamplersAllInternalBackwards();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
PolyVox::FilePager<int32_t>* m_pFilePager;
|
PolyVox::FilePager<int32_t>* m_pFilePager;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user