summaryrefslogtreecommitdiff
path: root/src/gfx.cpp
diff options
context:
space:
mode:
authorTechGeekNZ <git@tech.geek.nz>2020-06-08 10:38:06 +1200
committerCharles Pigott <charlespigott@googlemail.com>2020-06-09 13:15:47 +0100
commit8652a4db76c978598918bfdb600a3453d794930a (patch)
tree2f767454702cdcdedd28b1335fff88c2ed416ab6 /src/gfx.cpp
parentcaab095e4ea202ccbe09b4c3f2ea6e36070bef29 (diff)
downloadopenttd-8652a4db76c978598918bfdb600a3453d794930a.tar.xz
Cleanup: Give `SetDirtyBlocks` a more descriptive name.
Diffstat (limited to 'src/gfx.cpp')
-rw-r--r--src/gfx.cpp27
1 files changed, 18 insertions, 9 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp
index a5e577205..6039946fc 100644
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -1416,6 +1416,16 @@ void DrawMouseCursor()
_cursor.dirty = false;
}
+/**
+ * Repaints a specific rectangle of the screen.
+ *
+ * @param left,top,right,bottom The area of the screen that needs repainting
+ * @pre The rectangle should have been previously marked dirty with \c AddDirtyBlock.
+ * @see AddDirtyBlock
+ * @see DrawDirtyBlocks
+ * @ingroup dirty
+ *
+ */
void RedrawScreenRect(int left, int top, int right, int bottom)
{
assert(right <= _screen.width && bottom <= _screen.height);
@@ -1438,7 +1448,9 @@ void RedrawScreenRect(int left, int top, int right, int bottom)
/**
* Repaints the rectangle blocks which are marked as 'dirty'.
*
- * @see SetDirtyBlocks
+ * @see AddDirtyBlock
+ *
+ * @ingroup dirty
*/
void DrawDirtyBlocks()
{
@@ -1541,21 +1553,18 @@ void DrawDirtyBlocks()
}
/**
- * This function extends the internal _invalid_rect rectangle as it
- * now contains the rectangle defined by the given parameters. Note
- * the point (0,0) is top left.
+ * Extend the internal _invalid_rect rectangle to contain the rectangle
+ * defined by the given parameters. Note the point (0,0) is top left.
*
* @param left The left edge of the rectangle
* @param top The top edge of the rectangle
* @param right The right edge of the rectangle
* @param bottom The bottom edge of the rectangle
* @see DrawDirtyBlocks
+ * @ingroup dirty
*
- * @todo The name of the function should be called like @c AddDirtyBlock as
- * it neither set a dirty rect nor add several dirty rects although
- * the function name is in plural. (Progman)
*/
-void SetDirtyBlocks(int left, int top, int right, int bottom)
+void AddDirtyBlock(int left, int top, int right, int bottom)
{
byte *b;
int width;
@@ -1600,7 +1609,7 @@ void SetDirtyBlocks(int left, int top, int right, int bottom)
*/
void MarkWholeScreenDirty()
{
- SetDirtyBlocks(0, 0, _screen.width, _screen.height);
+ AddDirtyBlock(0, 0, _screen.width, _screen.height);
}
/**