| 92 | } |
| 93 | |
| 94 | void RectangularDrawBuffer::getBlockInfo(u32 *num_strips, |
| 95 | u32 *bytes_per_strip, |
| 96 | u32 *total_bytes) const { |
| 97 | *num_strips = mDrawList.size(); |
| 98 | *bytes_per_strip = getMaxBytesInStrip(); |
| 99 | *total_bytes = (*num_strips) * (*bytes_per_strip); |
| 100 | } |
| 101 | |
| 102 | } // namespace fl |
no test coverage detected