mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
Behave like Basic's Horizontal and Vertical commands. Internal dline() optimizations are renamed gint_dhline() and gint_dvline(). Also supports ghline() and gvline() in the gray engine. Optimization cases here are amost negligible due to limiting RAM access frequencies and the very limited amount of work accomplished in the functions. Code maintainability is prioritized by using dline().
7 lines
134 B
C
7 lines
134 B
C
#include <gint/gray.h>
|
|
|
|
/* ghline(): Full-width horizontal line */
|
|
void ghline(int y, color_t color)
|
|
{
|
|
gline(0, y, 127, y, color);
|
|
}
|