From 6c92e6a5c5768790a473f5aab56bf1cf90b319bd Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Fri, 30 May 2014 11:44:24 -0700 Subject: [PATCH] Increasing microprofile stack size, as some of these trees are deep. --- src/xenia/gpu/d3d11/d3d11_graphics_system.cc | 2 -- third_party/microprofile/microprofile.h | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/xenia/gpu/d3d11/d3d11_graphics_system.cc b/src/xenia/gpu/d3d11/d3d11_graphics_system.cc index 70460d0cd..88fe0f205 100644 --- a/src/xenia/gpu/d3d11/d3d11_graphics_system.cc +++ b/src/xenia/gpu/d3d11/d3d11_graphics_system.cc @@ -152,8 +152,6 @@ void D3D11GraphicsSystem::Initialize() { } void D3D11GraphicsSystem::Pump() { - SCOPE_profile_cpu_f("gpu"); - if (swap_pending_) { swap_pending_ = false; diff --git a/third_party/microprofile/microprofile.h b/third_party/microprofile/microprofile.h index a2a840ea6..3e9dca24a 100644 --- a/third_party/microprofile/microprofile.h +++ b/third_party/microprofile/microprofile.h @@ -443,7 +443,7 @@ int64_t MicroProfileGetTick() #define MICROPROFILE_BUFFER_SIZE ((MICROPROFILE_PER_THREAD_BUFFER_SIZE)/sizeof(MicroProfileLogEntry)) #define MICROPROFILE_MAX_THREADS 32 #define MICROPROFILE_MAX_CONTEXT_SWITCH_THREADS 256 -#define MICROPROFILE_STACK_MAX 32 +#define MICROPROFILE_STACK_MAX 128 #define MICROPROFILE_MAX_PRESETS 5 #define MICROPROFILE_DEBUG 0 #define MICROPROFILE_TOOLTIP_MAX_STRINGS (32 + MICROPROFILE_MAX_GROUPS*2)