Timing GraphicsAppManager methods
This commit is contained in:
@@ -17,8 +17,6 @@
|
||||
#include "Base/EngineConfiguration.hpp"
|
||||
#include "Controller/FreeCamCameraController.hpp"
|
||||
|
||||
#include <tracy/Tracy.hpp>
|
||||
|
||||
#pragma clang diagnostic push
|
||||
#pragma ide diagnostic ignored "cert-msc50-cpp"
|
||||
#pragma ide diagnostic ignored "cppcoreguidelines-narrowing-conversions"
|
||||
@@ -46,7 +44,6 @@ namespace OpenVulkano
|
||||
public:
|
||||
void Init() override
|
||||
{
|
||||
ZoneScoped;
|
||||
auto engineConfig = OpenVulkano::EngineConfiguration::GetEngineConfiguration();
|
||||
engineConfig->SetNumThreads(4);
|
||||
engineConfig->SetPreferFramebufferFormatSRGB(false);
|
||||
@@ -85,7 +82,6 @@ namespace OpenVulkano
|
||||
|
||||
void Tick() override
|
||||
{
|
||||
ZoneScoped;
|
||||
for (uint32_t i = 0; i < DYNAMIC; i++)
|
||||
{
|
||||
nodesPool[i].SetMatrix(glm::translate(glm::mat4x4(1), glm::vec3((std::rand() % 10000) / 1000.0f - 5, (std::rand() % 10000) / 1000.0f - 5, (std::rand() % 10000) / 1000.0f - 5)));
|
||||
|
||||
Reference in New Issue
Block a user