Trim trailing white spaces. Changes some NULL to nullptr.

This commit is contained in:
ocornut
2026-08-07 15:42:27 +02:00
parent 49fa47fc19
commit 5de45fb1d9
9 changed files with 22 additions and 22 deletions

View File

@@ -548,7 +548,7 @@ WGPUSurface CreateWGPUSurface(const WGPUInstance& instance, GLFWwindow* window)
{
create_info.System = "win32";
create_info.RawWindow = (void*)glfwGetWin32Window(window);
create_info.RawInstance = (void*)::GetModuleHandle(NULL);
create_info.RawInstance = (void*)::GetModuleHandle(nullptr);
return ImGui_ImplWGPU_CreateWGPUSurfaceHelper(&create_info);
}
#else