| 86 | } |
| 87 | |
| 88 | u32 RectangularDrawBuffer::getTotalBytes() const { |
| 89 | u32 num_strips = mDrawList.size(); |
| 90 | u32 max_bytes = getMaxBytesInStrip(); |
| 91 | return num_strips * max_bytes; |
| 92 | } |
| 93 | |
| 94 | void RectangularDrawBuffer::getBlockInfo(u32 *num_strips, |
| 95 | u32 *bytes_per_strip, |
no test coverage detected