polyvox/include/Utility.h
2008-05-13 19:49:03 +00:00

14 lines
271 B
C++

#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