GetCapacity
Description
Obtains the maximum length of tiling data that can be contained in an instance.
Prototype
size_t GetCapacity() const
Parameters
None
Returns
Maximum length of tiling data
Restrictions
None
Example
auto td_buf = TilingData::CreateCap(100U); auto td = reinterpret_cast<TilingData *>(td_buf.get()); size_t cap = td->GetCapacity(); // 100U
Parent topic: TilingData