| 117 | } |
| 118 | |
| 119 | unsigned int HnRenderBuffer::GetHeight() const |
| 120 | { |
| 121 | if (!m_pTarget) |
| 122 | return 0; |
| 123 | |
| 124 | const auto MipLevelProps = GetMipLevelProperties(m_pTarget->GetTexture()->GetDesc(), m_pTarget->GetDesc().MostDetailedMip); |
| 125 | return MipLevelProps.LogicalHeight; |
| 126 | } |
| 127 | |
| 128 | unsigned int HnRenderBuffer::GetDepth() const |
| 129 | { |
no outgoing calls
no test coverage detected