1 #ifndef GfxTL__MAXLEVELSUBDIVISIONTREESTRATEGY_HEADER__
2 #define GfxTL__MAXLEVELSUBDIVISIONTREESTRATEGY_HEADER__
6 template <
class InheritedStrategyT>
9 typedef typename InheritedStrategyT::value_type
value_type;
11 class CellData :
public InheritedStrategyT::CellData
15 template <
class BaseT>
16 class StrategyBase :
public InheritedStrategyT::StrategyBase<BaseT>
19 typedef typename InheritedStrategyT::StrategyBase<BaseT>
BaseType;
29 return m_maxSubdivisionLevel;
35 m_maxSubdivisionLevel = level;
39 template <
class BuildInformationT>
43 return bi.Level() < m_maxSubdivisionLevel;
47 size_t m_maxSubdivisionLevel;