Files
gpu-screen-recorder-ui/include/gui/Utils.hpp
2024-08-25 13:39:33 +02:00

18 lines
419 B
C++

#pragma once
#include <mglpp/system/vec.hpp>
#include <mglpp/graphics/Color.hpp>
#include <functional>
#include <string_view>
namespace mgl {
class Window;
}
namespace gsr {
// Inner border
void draw_rectangle_outline(mgl::Window &window, mgl::vec2f pos, mgl::vec2f size, mgl::Color color, float border_size);
double get_frame_delta_seconds();
void set_frame_delta_seconds(double frame_delta);
}