mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-21 02:17:08 +00:00
23 lines
368 B
C++
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;
|
|
};
|
|
|
|
}
|