2025-09-25 19:25:17 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "imgui.h"
|
|
|
|
|
|
2026-01-23 23:00:35 +00:00
|
|
|
namespace pixelarium::application
|
2025-09-25 19:25:17 +02:00
|
|
|
{
|
|
|
|
|
bool dim_changed_p(const ImVec2& ref_rect, const ImVec2& new_rect);
|
|
|
|
|
|
|
|
|
|
ImVec2 aspect_const_dimensions(const ImVec2& raw_dim, const ImVec2& curr_dim);
|
2026-01-23 23:00:35 +00:00
|
|
|
}; // namespace pixelarium::application
|