From 1de0938ac71410c124f8f17f1bf4a225b742bb3f Mon Sep 17 00:00:00 2001 From: Nicholas Frechette Date: Fri, 25 Feb 2022 22:17:32 -0500 Subject: [PATCH] fix(tools): remove unnecessary code that doesn't compile No need to profile bind pose stripping for the time being. --- tools/acl_decompressor/sources/benchmark.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/acl_decompressor/sources/benchmark.cpp b/tools/acl_decompressor/sources/benchmark.cpp index da25857c..8a641a91 100644 --- a/tools/acl_decompressor/sources/benchmark.cpp +++ b/tools/acl_decompressor/sources/benchmark.cpp @@ -227,9 +227,6 @@ static void benchmark_decompression(benchmark::State& state) const uint32_t num_tracks = compressed_tracks.get_num_tracks(); acl::acl_impl::debug_track_writer pose_writer(s_allocator, acl::track_type8::qvvf, num_tracks); - if (decompression_function == DecompressionFunction::DecompressPose || decompression_function == DecompressionFunction::DecompressBone) - pose_writer.initialize_bind_pose(raw_tracks); - // Flush the CPU cache memset_impl(flush_buffer + k_vmem_padding, k_flush_buffer_size, 1);