From 341f9e060b236b209449a9e92afee2a8ef9ef4ee Mon Sep 17 00:00:00 2001 From: Thomas Touhey Date: Mon, 18 Jul 2016 17:31:03 +0200 Subject: [PATCH] Edited doc -- final form ? --- Makefile | 2 +- Makefile.vars | 23 +++++++++++--- doc/ML_VRAM.3.txt | 2 +- doc/ML_bmp.3.txt | 36 +++++----------------- doc/ML_bmp_16.3.txt | 47 +++++++++++++++++++++++++++++ doc/ML_bmp_16_and.3.txt | 1 + doc/ML_bmp_16_and_cl.3.txt | 1 + doc/ML_bmp_16_or.3.txt | 1 + doc/ML_bmp_16_or_cl.3.txt | 1 + doc/ML_bmp_16_xor.3.txt | 1 + doc/ML_bmp_16_xor_cl.3.txt | 1 + doc/ML_bmp_8.3.txt | 47 +++++++++++++++++++++++++++++ doc/ML_bmp_8_and.3.txt | 1 + doc/ML_bmp_8_and_cl.3.txt | 1 + doc/ML_bmp_8_or.3.txt | 1 + doc/ML_bmp_8_or_cl.3.txt | 1 + doc/ML_bmp_8_xor.3.txt | 1 + doc/ML_bmp_8_xor_cl.3.txt | 1 + doc/ML_bmp_and.3.txt | 1 + doc/ML_bmp_and_cl.3.txt | 1 + doc/ML_bmp_or.3.txt | 1 + doc/ML_bmp_or_cl.3.txt | 1 + doc/ML_bmp_xor.3.txt | 1 + doc/ML_bmp_xor_cl.3.txt | 1 + doc/ML_circle.3.txt | 2 +- doc/ML_clear_screen.3.txt | 1 + doc/ML_clear_vram.3.txt | 1 + doc/ML_contrast.3.txt | 2 +- doc/ML_display_vram.3.txt | 1 + doc/ML_ellipse.3.txt | 2 +- doc/ML_ellipse_in_rect.3.txt | 1 + doc/ML_filled_circle.3.txt | 1 + doc/ML_filled_ellipse.3.txt | 1 + doc/ML_filled_ellipse_in_rect.3.txt | 1 + doc/ML_filled_polygon.3.txt | 1 + doc/ML_get_contrast.3.txt | 1 + doc/ML_horizontal_line.3.txt | 1 + doc/ML_horizontal_scroll.3.txt | 1 + doc/ML_line.3.txt | 2 +- doc/ML_pixel.3.txt | 2 +- doc/ML_pixel_test.3.txt | 1 + doc/ML_polygon.3.txt | 2 +- doc/ML_scroll.3.txt | 2 +- doc/ML_set_contrast.3.txt | 1 + doc/ML_vertical_line.3.txt | 1 + doc/ML_vertical_scroll.3.txt | 1 + doc/ML_vram_address.3.txt | 1 + doc/libmonochrome.3.txt | 8 ++--- 48 files changed, 167 insertions(+), 46 deletions(-) create mode 100644 doc/ML_bmp_16.3.txt create mode 120000 doc/ML_bmp_16_and.3.txt create mode 120000 doc/ML_bmp_16_and_cl.3.txt create mode 120000 doc/ML_bmp_16_or.3.txt create mode 120000 doc/ML_bmp_16_or_cl.3.txt create mode 120000 doc/ML_bmp_16_xor.3.txt create mode 120000 doc/ML_bmp_16_xor_cl.3.txt create mode 100644 doc/ML_bmp_8.3.txt create mode 120000 doc/ML_bmp_8_and.3.txt create mode 120000 doc/ML_bmp_8_and_cl.3.txt create mode 120000 doc/ML_bmp_8_or.3.txt create mode 120000 doc/ML_bmp_8_or_cl.3.txt create mode 120000 doc/ML_bmp_8_xor.3.txt create mode 120000 doc/ML_bmp_8_xor_cl.3.txt create mode 120000 doc/ML_bmp_and.3.txt create mode 120000 doc/ML_bmp_and_cl.3.txt create mode 120000 doc/ML_bmp_or.3.txt create mode 120000 doc/ML_bmp_or_cl.3.txt create mode 120000 doc/ML_bmp_xor.3.txt create mode 120000 doc/ML_bmp_xor_cl.3.txt create mode 120000 doc/ML_clear_screen.3.txt create mode 120000 doc/ML_clear_vram.3.txt create mode 120000 doc/ML_display_vram.3.txt create mode 120000 doc/ML_ellipse_in_rect.3.txt create mode 120000 doc/ML_filled_circle.3.txt create mode 120000 doc/ML_filled_ellipse.3.txt create mode 120000 doc/ML_filled_ellipse_in_rect.3.txt create mode 120000 doc/ML_filled_polygon.3.txt create mode 120000 doc/ML_get_contrast.3.txt create mode 120000 doc/ML_horizontal_line.3.txt create mode 120000 doc/ML_horizontal_scroll.3.txt create mode 120000 doc/ML_pixel_test.3.txt create mode 120000 doc/ML_set_contrast.3.txt create mode 120000 doc/ML_vertical_line.3.txt create mode 120000 doc/ML_vertical_scroll.3.txt create mode 120000 doc/ML_vram_address.3.txt diff --git a/Makefile b/Makefile index 83237bb..1734e15 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ all-doc: $(foreach section,$(MAN_SECTS),$(MAN_$(section):%=$(MANDIR)/man$(sectio ## - Clean all manpages clean-doc: - $(RM) $(foreach section,$(MAN_SECTS),$(MAN_$(section):%=$(MANDIR)/man$(section)/%.$(section))) + $(RM) -R $(MAN_SECTS:%=$(MANDIR)/man%) ## Install doc install-doc: diff --git a/Makefile.vars b/Makefile.vars index 8ee9a1d..5606c0b 100644 --- a/Makefile.vars +++ b/Makefile.vars @@ -49,10 +49,25 @@ INCINT = monochrome/internals MAN_SECTS = 3 ## SECTIONS CONTENT ## - Third -MAN_3 = libmonochrome ML_bmp ML_circle ML_color \ - ML_contrast ML_ellipse ML_line ML_pixel \ - ML_point ML_polygon ML_rectangle ML_scroll \ - ML_VRAM +MAN_3 = libmonochrome \ + ML_bmp_or ML_bmp_and ML_bmp_xor \ + ML_bmp_or_cl ML_bmp_and_cl ML_bmp_xor_cl \ + ML_bmp_8_or ML_bmp_8_and ML_bmp_8_xor \ + ML_bmp_8_or_cl ML_bmp_8_and_cl ML_bmp_8_xor_cl \ + ML_bmp_16_or ML_bmp_16_and ML_bmp_16_xor \ + ML_bmp_16_or_cl ML_bmp_16_and_cl ML_bmp_16_xor_cl \ + ML_circle ML_filled_circle \ + ML_color \ + ML_get_contrast ML_set_contrast \ + ML_ellipse ML_filled_ellipse \ + ML_ellipse_in_rect ML_filled_ellipse_in_rect \ + ML_line ML_horizontal_line ML_vertical_line \ + ML_pixel ML_pixel_test \ + ML_point \ + ML_polygon ML_filled_polygon \ + ML_rectangle \ + ML_horizontal_scroll ML_vertical_scroll \ + ML_vram_address ML_clear_vram ML_clear_screen ML_display_vram # BIN UTILITIES ## Platform diff --git a/doc/ML_VRAM.3.txt b/doc/ML_VRAM.3.txt index 70f1fb7..f63b591 100644 --- a/doc/ML_VRAM.3.txt +++ b/doc/ML_VRAM.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_VRAM - Video RAM and Display Driver management functions from libmonochrome +ML_vram_address, ML_clear_vram, ML_clear_screen, ML_display_vram - Video RAM and Display Driver management functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_bmp.3.txt b/doc/ML_bmp.3.txt index 394f067..6a2534f 100644 --- a/doc/ML_bmp.3.txt +++ b/doc/ML_bmp.3.txt @@ -7,7 +7,9 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_bmp - BMP drawing functions from libmonochrome +ML_bmp_or, ML_bmp_and, ML_bmp_xor, +ML_bmp_or_cl, ML_bmp_and_cl, ML_bmp_xor_cl +- BMP drawing functions from libmonochrome SYNOPSIS -------- @@ -27,43 +29,19 @@ void ML_bmp_and_cl(const unsigned char *bmp, int x, int y, int width, int height); void ML_bmp_xor_cl(const unsigned char *bmp, int x, int y, int width, int height); - -void ML_bmp_8_or(const unsigned char *bmp, - int x, int y); -void ML_bmp_8_and(const unsigned char *bmp, - int x, int y); -void ML_bmp_8_xor(const unsigned char *bmp, - int x, int y); -void ML_bmp_8_or_cl(const unsigned char *bmp, - int x, int y); -void ML_bmp_8_and_cl(const unsigned char *bmp, - int x, int y); -void ML_bmp_8_xor_cl(const unsigned char *bmp, - int x, int y); - -void ML_bmp_16_or(const unsigned short *bmp, - int x, int y); -void ML_bmp_16_and(const unsigned short *bmp, - int x, int y); -void ML_bmp_16_xor(const unsigned short *bmp, - int x, int y); -void ML_bmp_16_or_cl(const unsigned short *bmp, - int x, int y); -void ML_bmp_16_and_cl(const unsigned short *bmp, - int x, int y); -void ML_bmp_16_xor_cl(const unsigned short *bmp, - int x, int y); ---- DESCRIPTION ----------- Those functions are meant to draw monochrome with fill bits bitmaps -- like game sprites -- on the VRAM. -Functions starting with the ML_bmp_8 draw 8*8 bitmaps. Functions starting with ML_bmp_16 draw 16*16 bitmaps. All other images must be drawn with the the other functions. - Function with the _cl suffix are functions using clipping, which means they are able to draw sprites even if they aren't completely on screen. Other functions only draw the bitmap if it is in the screen -- which makes them a little faster. +For 8*8 and 16*16 bitmaps, see ML_bmp_8_or(3) and ML_bmp_16_or(3). + SEE ALSO -------- +ML_bmp_8_or(3), +ML_bmp_16_or(3), libmonochrome(3), ML_VRAM(3) diff --git a/doc/ML_bmp_16.3.txt b/doc/ML_bmp_16.3.txt new file mode 100644 index 0000000..eb6894d --- /dev/null +++ b/doc/ML_bmp_16.3.txt @@ -0,0 +1,47 @@ +ML_BMP_16(3) +============ +Thomas "Cakeisalie5" Touhey +:Email: thomas@touhey.fr +:man source: libmonochrome +:man manual: libmonochrome manual + +NAME +---- +ML_bmp_16_or, ML_bmp_16_and, ML_bmp_16_xor, +ML_bmp_16_or_cl, ML_bmp_16_and_cl, ML_bmp_16_xor_cl +- 16*16 BMP drawing functions from libmonochrome + +SYNOPSIS +-------- +[source,c] +---- +#include + +void ML_bmp_16_or(const unsigned short *bmp, + int x, int y); +void ML_bmp_16_and(const unsigned short *bmp, + int x, int y); +void ML_bmp_16_xor(const unsigned short *bmp, + int x, int y); +void ML_bmp_16_or_cl(const unsigned short *bmp, + int x, int y); +void ML_bmp_16_and_cl(const unsigned short *bmp, + int x, int y); +void ML_bmp_16_xor_cl(const unsigned short *bmp, + int x, int y); +---- + +DESCRIPTION +----------- +Those functions are meant to draw 16*16 monochrome with fill bits bitmaps -- like game sprites -- on the VRAM. + +Function with the _cl suffix are functions using clipping, which means they are able to draw sprites even if they aren't completely on screen. Other functions only draw the bitmap if it is in the screen -- which makes them a little faster. + +For bitmaps with other dimensions, please see ML_bmp_or(3) and ML_bmp_8_or(3). + +SEE ALSO +-------- +ML_bmp_or(3), +ML_bmp_8_or(3), +libmonochrome(3), +ML_VRAM(3) diff --git a/doc/ML_bmp_16_and.3.txt b/doc/ML_bmp_16_and.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_and.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_16_and_cl.3.txt b/doc/ML_bmp_16_and_cl.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_and_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_16_or.3.txt b/doc/ML_bmp_16_or.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_or.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_16_or_cl.3.txt b/doc/ML_bmp_16_or_cl.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_or_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_16_xor.3.txt b/doc/ML_bmp_16_xor.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_xor.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_16_xor_cl.3.txt b/doc/ML_bmp_16_xor_cl.3.txt new file mode 120000 index 0000000..fd285aa --- /dev/null +++ b/doc/ML_bmp_16_xor_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_16.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8.3.txt b/doc/ML_bmp_8.3.txt new file mode 100644 index 0000000..8584f43 --- /dev/null +++ b/doc/ML_bmp_8.3.txt @@ -0,0 +1,47 @@ +ML_BMP_8(3) +=========== +Thomas "Cakeisalie5" Touhey +:Email: thomas@touhey.fr +:man source: libmonochrome +:man manual: libmonochrome manual + +NAME +---- +ML_bmp_8_or, ML_bmp_8_and, ML_bmp_8_xor, +ML_bmp_8_or_cl, ML_bmp_8_and_cl, ML_bmp_8_xor_cl +- 8*8 BMP drawing functions from libmonochrome + +SYNOPSIS +-------- +[source,c] +---- +#include + +void ML_bmp_8_or(const unsigned char *bmp, + int x, int y); +void ML_bmp_8_and(const unsigned char *bmp, + int x, int y); +void ML_bmp_8_xor(const unsigned char *bmp, + int x, int y); +void ML_bmp_8_or_cl(const unsigned char *bmp, + int x, int y); +void ML_bmp_8_and_cl(const unsigned char *bmp, + int x, int y); +void ML_bmp_8_xor_cl(const unsigned char *bmp, + int x, int y); +---- + +DESCRIPTION +----------- +Those functions are meant to draw 8*8 monochrome with fill bits bitmaps -- like game sprites -- on the VRAM. + +Function with the _cl suffix are functions using clipping, which means they are able to draw sprites even if they aren't completely on screen. Other functions only draw the bitmap if it is in the screen -- which makes them a little faster. + +For bitmaps with other dimensions, please see ML_bmp_or(3) and ML_bmp_16_or(3). + +SEE ALSO +-------- +ML_bmp_or(3), +ML_bmp_16_or(3), +libmonochrome(3), +ML_VRAM(3) diff --git a/doc/ML_bmp_8_and.3.txt b/doc/ML_bmp_8_and.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_and.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8_and_cl.3.txt b/doc/ML_bmp_8_and_cl.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_and_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8_or.3.txt b/doc/ML_bmp_8_or.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_or.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8_or_cl.3.txt b/doc/ML_bmp_8_or_cl.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_or_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8_xor.3.txt b/doc/ML_bmp_8_xor.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_xor.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_8_xor_cl.3.txt b/doc/ML_bmp_8_xor_cl.3.txt new file mode 120000 index 0000000..f88532a --- /dev/null +++ b/doc/ML_bmp_8_xor_cl.3.txt @@ -0,0 +1 @@ +ML_bmp_8.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_and.3.txt b/doc/ML_bmp_and.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_and.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_and_cl.3.txt b/doc/ML_bmp_and_cl.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_and_cl.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_or.3.txt b/doc/ML_bmp_or.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_or.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_or_cl.3.txt b/doc/ML_bmp_or_cl.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_or_cl.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_xor.3.txt b/doc/ML_bmp_xor.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_xor.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_bmp_xor_cl.3.txt b/doc/ML_bmp_xor_cl.3.txt new file mode 120000 index 0000000..4085b48 --- /dev/null +++ b/doc/ML_bmp_xor_cl.3.txt @@ -0,0 +1 @@ +ML_bmp.3.txt \ No newline at end of file diff --git a/doc/ML_circle.3.txt b/doc/ML_circle.3.txt index f7a2df8..d7dbebe 100644 --- a/doc/ML_circle.3.txt +++ b/doc/ML_circle.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_circle - Circles drawing functions from libmonochrome +ML_circle, ML_filled_circle - Circles drawing functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_clear_screen.3.txt b/doc/ML_clear_screen.3.txt new file mode 120000 index 0000000..b5f405b --- /dev/null +++ b/doc/ML_clear_screen.3.txt @@ -0,0 +1 @@ +ML_VRAM.3.txt \ No newline at end of file diff --git a/doc/ML_clear_vram.3.txt b/doc/ML_clear_vram.3.txt new file mode 120000 index 0000000..b5f405b --- /dev/null +++ b/doc/ML_clear_vram.3.txt @@ -0,0 +1 @@ +ML_VRAM.3.txt \ No newline at end of file diff --git a/doc/ML_contrast.3.txt b/doc/ML_contrast.3.txt index ee0f4ab..d1ea383 100644 --- a/doc/ML_contrast.3.txt +++ b/doc/ML_contrast.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_contrast - Screen contrast setting functions from libmonochrome +ML_set_contrast, ML_get_contrast - Screen contrast setting and getting functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_display_vram.3.txt b/doc/ML_display_vram.3.txt new file mode 120000 index 0000000..b5f405b --- /dev/null +++ b/doc/ML_display_vram.3.txt @@ -0,0 +1 @@ +ML_VRAM.3.txt \ No newline at end of file diff --git a/doc/ML_ellipse.3.txt b/doc/ML_ellipse.3.txt index 6976a52..a1229b9 100644 --- a/doc/ML_ellipse.3.txt +++ b/doc/ML_ellipse.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_ellipse - Ellipses drawing functions from libmonochrome +ML_ellipse, ML_filled_ellipse, ML_ellipse_in_rect, ML_filled_ellipse_in_rect - Ellipses drawing functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_ellipse_in_rect.3.txt b/doc/ML_ellipse_in_rect.3.txt new file mode 120000 index 0000000..b94ae02 --- /dev/null +++ b/doc/ML_ellipse_in_rect.3.txt @@ -0,0 +1 @@ +ML_ellipse.3.txt \ No newline at end of file diff --git a/doc/ML_filled_circle.3.txt b/doc/ML_filled_circle.3.txt new file mode 120000 index 0000000..98e9c6a --- /dev/null +++ b/doc/ML_filled_circle.3.txt @@ -0,0 +1 @@ +ML_circle.3.txt \ No newline at end of file diff --git a/doc/ML_filled_ellipse.3.txt b/doc/ML_filled_ellipse.3.txt new file mode 120000 index 0000000..b94ae02 --- /dev/null +++ b/doc/ML_filled_ellipse.3.txt @@ -0,0 +1 @@ +ML_ellipse.3.txt \ No newline at end of file diff --git a/doc/ML_filled_ellipse_in_rect.3.txt b/doc/ML_filled_ellipse_in_rect.3.txt new file mode 120000 index 0000000..b94ae02 --- /dev/null +++ b/doc/ML_filled_ellipse_in_rect.3.txt @@ -0,0 +1 @@ +ML_ellipse.3.txt \ No newline at end of file diff --git a/doc/ML_filled_polygon.3.txt b/doc/ML_filled_polygon.3.txt new file mode 120000 index 0000000..7f889f0 --- /dev/null +++ b/doc/ML_filled_polygon.3.txt @@ -0,0 +1 @@ +ML_polygon.3.txt \ No newline at end of file diff --git a/doc/ML_get_contrast.3.txt b/doc/ML_get_contrast.3.txt new file mode 120000 index 0000000..d7f6d6d --- /dev/null +++ b/doc/ML_get_contrast.3.txt @@ -0,0 +1 @@ +ML_contrast.3.txt \ No newline at end of file diff --git a/doc/ML_horizontal_line.3.txt b/doc/ML_horizontal_line.3.txt new file mode 120000 index 0000000..c3866b2 --- /dev/null +++ b/doc/ML_horizontal_line.3.txt @@ -0,0 +1 @@ +ML_line.3.txt \ No newline at end of file diff --git a/doc/ML_horizontal_scroll.3.txt b/doc/ML_horizontal_scroll.3.txt new file mode 120000 index 0000000..9382743 --- /dev/null +++ b/doc/ML_horizontal_scroll.3.txt @@ -0,0 +1 @@ +ML_scroll.3.txt \ No newline at end of file diff --git a/doc/ML_line.3.txt b/doc/ML_line.3.txt index 99b8747..61105bf 100644 --- a/doc/ML_line.3.txt +++ b/doc/ML_line.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_line - Line drawing functions from libmonochrome +ML_line, ML_horizontal_line, ML_vertical_line - Line drawing functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_pixel.3.txt b/doc/ML_pixel.3.txt index c7f2a21..9c28e84 100644 --- a/doc/ML_pixel.3.txt +++ b/doc/ML_pixel.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_pixel - Pixel setting and testing functions from libmonochrome +ML_pixel, ML_pixel_test - Pixel setting and testing functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_pixel_test.3.txt b/doc/ML_pixel_test.3.txt new file mode 120000 index 0000000..b05186c --- /dev/null +++ b/doc/ML_pixel_test.3.txt @@ -0,0 +1 @@ +ML_pixel.3.txt \ No newline at end of file diff --git a/doc/ML_polygon.3.txt b/doc/ML_polygon.3.txt index b80ddd2..f11fcd2 100644 --- a/doc/ML_polygon.3.txt +++ b/doc/ML_polygon.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_polygon - Polygon drawing functions from libmonochrome +ML_polygon, ML_filled_polygon - Polygon drawing functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_scroll.3.txt b/doc/ML_scroll.3.txt index 3b7beea..c5667e1 100644 --- a/doc/ML_scroll.3.txt +++ b/doc/ML_scroll.3.txt @@ -7,7 +7,7 @@ Thomas "Cakeisalie5" Touhey NAME ---- -ML_scroll - VRAM scrolling functions from libmonochrome +ML_horizontal_scroll, ML_vertical_scroll - VRAM scrolling functions from libmonochrome SYNOPSIS -------- diff --git a/doc/ML_set_contrast.3.txt b/doc/ML_set_contrast.3.txt new file mode 120000 index 0000000..d7f6d6d --- /dev/null +++ b/doc/ML_set_contrast.3.txt @@ -0,0 +1 @@ +ML_contrast.3.txt \ No newline at end of file diff --git a/doc/ML_vertical_line.3.txt b/doc/ML_vertical_line.3.txt new file mode 120000 index 0000000..c3866b2 --- /dev/null +++ b/doc/ML_vertical_line.3.txt @@ -0,0 +1 @@ +ML_line.3.txt \ No newline at end of file diff --git a/doc/ML_vertical_scroll.3.txt b/doc/ML_vertical_scroll.3.txt new file mode 120000 index 0000000..9382743 --- /dev/null +++ b/doc/ML_vertical_scroll.3.txt @@ -0,0 +1 @@ +ML_scroll.3.txt \ No newline at end of file diff --git a/doc/ML_vram_address.3.txt b/doc/ML_vram_address.3.txt new file mode 120000 index 0000000..b5f405b --- /dev/null +++ b/doc/ML_vram_address.3.txt @@ -0,0 +1 @@ +ML_VRAM.3.txt \ No newline at end of file diff --git a/doc/libmonochrome.3.txt b/doc/libmonochrome.3.txt index beb5f1a..e666a56 100644 --- a/doc/libmonochrome.3.txt +++ b/doc/libmonochrome.3.txt @@ -29,8 +29,8 @@ libmonochrome provides tools to work with the VRAM and the Display Driver. SEE ALSO -------- ML_vram(3), -ML_contrast(3), -ML_Color(3), +ML_get_contrast(3), +ML_color(3), ML_pixel(3), ML_point(3), ML_line(3), @@ -38,5 +38,5 @@ ML_rectangle(3), ML_polygon(3), ML_circle(3), ML_ellipse(3), -ML_scroll(3), -ML_bmp(3) +ML_horizontal_scroll(3), +ML_bmp_or(3)