e60203b57d
* deploy docs only for main * Revert "deploy docs only for main" This reverts commit 53e37bd8a43e7e20d5a64bed1b3e00ced551dcae. * init czi specific view * fix build
11 lines
249 B
C++
11 lines
249 B
C++
#pragma once
|
|
|
|
#include "imgui.h"
|
|
|
|
namespace pixelarium::render
|
|
{
|
|
bool dim_changed_p(const ImVec2& ref_rect, const ImVec2& new_rect);
|
|
|
|
ImVec2 aspect_const_dimensions(const ImVec2& raw_dim, const ImVec2& curr_dim);
|
|
}; // namespace pixelarium::render
|