1 #ifndef GfxTL__MAXLEVELSUBDIVISIONTREESTRATEGY_HEADER__
2 #define GfxTL__MAXLEVELSUBDIVISIONTREESTRATEGY_HEADER__
6 template<
class InheritedStrategyT >
9 typedef typename InheritedStrategyT::value_type
value_type;
12 :
public InheritedStrategyT::CellData
15 template<
class BaseT >
17 :
public InheritedStrategyT::StrategyBase< BaseT >
20 typedef typename InheritedStrategyT::StrategyBase< BaseT >
25 : m_maxSubdivisionLevel(15)
30 return m_maxSubdivisionLevel;
35 m_maxSubdivisionLevel = level;
39 template<
class BuildInformationT >
42 return bi.Level() < m_maxSubdivisionLevel;
46 size_t m_maxSubdivisionLevel;