| 797 | } |
| 798 | |
| 799 | int32 MipLevelsCount(int32 width) |
| 800 | { |
| 801 | int32 result = 1; |
| 802 | while (width > 1) |
| 803 | { |
| 804 | width >>= 1; |
| 805 | result++; |
| 806 | } |
| 807 | return result; |
| 808 | } |
| 809 | |
| 810 | int32 MipLevelsCount(int32 width, int32 height) |
| 811 | { |
no outgoing calls
no test coverage detected