summaryrefslogtreecommitdiff
path: root/sys/man/2
diff options
context:
space:
mode:
authorBurnZeZ <devnull@localhost>2019-05-11 15:28:18 +0000
committerBurnZeZ <devnull@localhost>2019-05-11 15:28:18 +0000
commitbf4f158707ebfeacb15826ad4283ff247d7d81ae (patch)
tree7bec0f63c85751dfce39fd323c0bc5d551cbd7b2 /sys/man/2
parent333c3202043d25c8a975b94cdd374712314189c7 (diff)
memdraw(2): remove references to iprint()
Diffstat (limited to 'sys/man/2')
-rw-r--r--sys/man/2/memdraw15
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/man/2/memdraw b/sys/man/2/memdraw
index 9542d88aa..df29c3052 100644
--- a/sys/man/2/memdraw
+++ b/sys/man/2/memdraw
@@ -34,7 +34,6 @@ freememsubfont,
memsubfontwidth,
getmemdefont,
memimagestring,
-iprint,
hwdraw \- drawing routines for memory-resident images
.SH SYNOPSIS
.nf
@@ -160,7 +159,6 @@ Point memimagestring(Memimage *dst, Point p, Memimage *color,
.PP
.ft L
.nf
-int iprint(char *fmt, ...)
int hwdraw(Memdrawparam *param)
.ft R
.SH DESCRIPTION
@@ -423,9 +421,7 @@ an end of a given style.
.PP
The
.I hwdraw
-and
-.I iprint
-functions are no-op stubs that may be overridden by clients
+function is a no-op stub that may be overridden by clients
of the library.
.I Hwdraw
is called at each call to
@@ -436,15 +432,6 @@ and return 1.
If it cannot satisfy the request, it should return 0.
This allows (for instance) the kernel to take advantage
of hardware acceleration.
-.I Iprint
-should format and print its arguments;
-it is given much debugging output when
-the global integer variable
-.B drawdebug
-is non-zero.
-In the kernel,
-.I iprint
-prints to a serial line rather than the screen, for obvious reasons.
.SH SOURCE
.B /sys/src/libmemdraw
.SH SEE ALSO