When PolyVox files include other PolyVox files the 'PolyVox' part of the path is not needed. This is only needed when examples, tests, and external applications include PolyVox.

This commit is contained in:
David Williams
2015-12-20 20:56:37 +00:00
parent 4fdecf42eb
commit 354b6aa9d0
30 changed files with 72 additions and 72 deletions

View File

@ -27,13 +27,13 @@ freely, subject to the following restrictions:
#include "Impl/RandomUnitVectors.h"
#include "Impl/RandomVectors.h"
#include "PolyVox/Array.h"
#include "PolyVox/Region.h"
#include "PolyVox/Raycast.h"
#include "Array.h"
#include "Region.h"
#include "Raycast.h"
//These two should not be here!
#include "PolyVox/Material.h"
#include "PolyVox/PagedVolume.h"
#include "Material.h"
#include "PagedVolume.h"
#include <algorithm>
@ -77,6 +77,6 @@ namespace PolyVox
void calculateAmbientOcclusion(VolumeType* volInput, Array<3, uint8_t>* arrayResult, const Region& region, float fRayLength, uint8_t uNoOfSamplesPerOutputElement, IsVoxelTransparentCallback isVoxelTransparentCallback);
}
#include "PolyVox/AmbientOcclusionCalculator.inl"
#include "AmbientOcclusionCalculator.inl"
#endif //__AmbientOcclusionCalculator_H__