| 31 | }; |
| 32 | |
| 33 | BcFormatDefinition const* GetBcFormatDefinition(ntc::BlockCompressedFormat format) |
| 34 | { |
| 35 | for (const auto& formatCandidate : c_BlockCompressedFormats) |
| 36 | { |
| 37 | if (formatCandidate.ntcFormat == format) |
| 38 | { |
| 39 | return &formatCandidate; |
| 40 | } |
| 41 | } |
| 42 | assert(false); |
| 43 | return nullptr; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | float Median(std::vector<float>& items) |
no outgoing calls
no test coverage detected