SingleInstanceMultipleEntityBenchmarks.h 777 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #if defined(HAVE_BENCHMARK)
  9. #pragma once
  10. #include <Prefab/Benchmark/Propagation/PropagationBenchmarkFixture.h>
  11. namespace Benchmark
  12. {
  13. //! This class captures benchmarks for propagating changes to a single prefab instance with multiple entities that are side-by-side.
  14. class SingleInstanceMultipleEntityBenchmarks : public PropagationBenchmarkFixture
  15. {
  16. protected:
  17. void SetupHarness(const benchmark::State& state) override;
  18. void TeardownHarness(const benchmark::State& state) override;
  19. };
  20. } // namespace Benchmark
  21. #endif