added dev prints for RHI init and shutdown

This commit is contained in:
myT 2024-12-15 20:10:33 +01:00
parent a1efd4cbf9
commit 90b98ffdc5

View file

@ -3209,6 +3209,8 @@ namespace RHI
bool Init(const InitDesc& initDesc)
{
ri.Printf(PRINT_DEVELOPER, "RHI: %s\n", rhi.device == NULL ? "full init" : "partial init");
Sys_V_Init();
if(rhi.device != NULL)
@ -3817,6 +3819,8 @@ namespace RHI
destroyWindow = true;
}
ri.Printf(PRINT_DEVELOPER, "RHI: %s\n", destroyWindow ? "full shutdown" : "partial shutdown");
if(rhi.frameBegun)
{
backEnd.renderFrame = qfalse;