1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 02:17:08 +00:00
Files
CLK/Outputs/OpenGL/Shaders/DirtyZone.hpp
T
2026-02-03 22:48:48 -05:00

23 lines
368 B
C++

//
// DirtyZone.hpp
// Clock Signal
//
// Created by Thomas Harte on 03/02/2026.
// Copyright © 2026 Thomas Harte. All rights reserved.
//
#include <cstdint>
namespace Outputs::Display::OpenGL {
/*!
Defines the top and bottom vertical extents of a rectangle;
its horizontal bounds are not dynamic.
*/
struct DirtyZone {
uint16_t begin;
uint16_t end;
};
}