Move create/destroy window ntf dbg_msg to log_debug

This commit is contained in:
Jupeyy 2022-05-14 12:44:07 +02:00
parent e9b59e72ff
commit 4268f891fc

View file

@ -10,6 +10,7 @@
#include <engine/shared/image_manipulation.h> #include <engine/shared/image_manipulation.h>
#include <engine/storage.h> #include <engine/storage.h>
#include <base/log.h>
#include <base/math.h> #include <base/math.h>
#include <base/system.h> #include <base/system.h>
@ -7148,7 +7149,7 @@ public:
void Cmd_WindowCreateNtf(const CCommandBuffer::SCommand_WindowCreateNtf *pCommand) void Cmd_WindowCreateNtf(const CCommandBuffer::SCommand_WindowCreateNtf *pCommand)
{ {
dbg_msg("vulkan", "creating new surface."); log_debug("vulkan", "creating new surface.");
m_pWindow = SDL_GetWindowFromID(pCommand->m_WindowID); m_pWindow = SDL_GetWindowFromID(pCommand->m_WindowID);
if(m_RenderingPaused) if(m_RenderingPaused)
{ {
@ -7164,7 +7165,7 @@ public:
void Cmd_WindowDestroyNtf(const CCommandBuffer::SCommand_WindowDestroyNtf *pCommand) void Cmd_WindowDestroyNtf(const CCommandBuffer::SCommand_WindowDestroyNtf *pCommand)
{ {
dbg_msg("vulkan", "surface got destroyed."); log_debug("vulkan", "surface got destroyed.");
if(!m_RenderingPaused) if(!m_RenderingPaused)
{ {
WaitFrame(); WaitFrame();