mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-04-13 14:07:00 +09:00
16 lines
327 B
C++
16 lines
327 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);
|
|
} |