GE Lua Documentation

Press F to search!

FindViewportByPlatformHandle

Definition


-- @/=[C]:-1
function FindViewportByPlatformHandle(...)

Callers

@/lua/common/extensions/ui/imgui_gen_luaintf.lua
function M.FindViewportByID(ImGuiID_id) return imgui.FindViewportByID(ImGuiID_id) end
function M.FindViewportByPlatformHandle(void_platform_handle)
  if void_platform_handle == nil then log("E", "", "Parameter 'void_platform_handle' of function 'FindViewportByPlatformHandle' cannot be nil, as the c type is 'void *'") ; return end
  if void_platform_handle == nil then log("E", "", "Parameter 'void_platform_handle' of function 'FindViewportByPlatformHandle' cannot be nil, as the c type is 'void *'") ; return end
  return imgui.FindViewportByPlatformHandle(void_platform_handle)
end