Commited refactoring changes made on the train.

This commit is contained in:
David Williams
2008-05-13 19:49:03 +00:00
parent 2107128f7c
commit b48b869eb2
10 changed files with 244 additions and 109 deletions

14
include/Utility.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __PolyVox_Utility_H__
#define __PolyVox_Utility_H__
#include "Typedef.h"
#include "boost/cstdint.hpp"
namespace PolyVox
{
POLYVOX_API boost::uint8_t logBase2(boost::uint32_t uInput);
POLYVOX_API bool isPowerOf2(boost::uint32_t uInput);
}
#endif