Replaced LargeVolume and SimpleVolume with PagedVolume in tests and examples.
This commit is contained in:
		@@ -24,7 +24,7 @@ freely, subject to the following restrictions:
 | 
			
		||||
#include "TestPicking.h"
 | 
			
		||||
 | 
			
		||||
#include "PolyVoxCore/Picking.h"
 | 
			
		||||
#include "PolyVoxCore/SimpleVolume.h"
 | 
			
		||||
#include "PolyVoxCore/PagedVolume.h"
 | 
			
		||||
 | 
			
		||||
#include <QtTest>
 | 
			
		||||
 | 
			
		||||
@@ -34,7 +34,7 @@ void TestPicking::testExecute()
 | 
			
		||||
{
 | 
			
		||||
	const int32_t uVolumeSideLength = 32;
 | 
			
		||||
 | 
			
		||||
	SimpleVolume<int8_t> volData(Region(Vector3DInt32(0,0,0), Vector3DInt32(uVolumeSideLength-1, uVolumeSideLength-1, uVolumeSideLength-1)));
 | 
			
		||||
	PagedVolume<int8_t> volData(Region(Vector3DInt32(0, 0, 0), Vector3DInt32(uVolumeSideLength - 1, uVolumeSideLength - 1, uVolumeSideLength - 1)));
 | 
			
		||||
	for (int32_t z = 0; z < uVolumeSideLength; z++)
 | 
			
		||||
	{
 | 
			
		||||
		for (int32_t y = 0; y < uVolumeSideLength; y++)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user