1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Count number of input and compressed frame image bytes.

This commit is contained in:
Bartosz Taudul
2020-03-14 14:35:57 +01:00
parent 0776dddc35
commit b8cc3f59d6
4 changed files with 30 additions and 3 deletions
+2
View File
@@ -493,6 +493,8 @@ public:
const decltype(DataBlock::cpuTopology)& GetCpuTopology() const { return m_data.cpuTopology; }
const CpuThreadTopology* GetThreadTopology( uint32_t cpuThread ) const;
std::pair<uint64_t, uint64_t> GetTextureCompressionBytes() const { return std::make_pair( m_texcomp.GetInputBytesCount(), m_texcomp.GetOutputBytesCount() ); }
private:
void Network();
void Exec();