ref: 168b9f3de4088ed08987e62da3c593e98bdaab29
parent: 1021caa3950b8e7c5c739a24d7839468c7bf062a
author: cinap_lenrek <[email protected]>
date: Mon Jul 21 14:10:58 EDT 2014
libdraw: add missing borderop() (thanks aiju)
--- a/sys/man/2/draw
+++ b/sys/man/2/draw
@@ -152,6 +152,9 @@
int icossin2(int x, int y, int *cosp, int *sinp)
.PB
void border(Image *dst, Rectangle r, int i, Image *color, Point sp)
+.PB
+void borderop(Image *dst, Rectangle r, int i, Image *color, Point sp,
+ Drawop op)
.br
.PB
Point string(Image *dst, Point p, Image *src, Point sp,
--- a/sys/src/libdraw/border.c
+++ b/sys/src/libdraw/border.c
@@ -3,7 +3,7 @@
#include <draw.h>
void
-border(Image *im, Rectangle r, int i, Image *color, Point sp)
+borderop(Image *im, Rectangle r, int i, Image *color, Point sp, Drawop op)
{
if(i < 0){
r = insetrect(r, i);
@@ -10,12 +10,18 @@
sp = addpt(sp, Pt(i,i));
i = -i;
}
- draw(im, Rect(r.min.x, r.min.y, r.max.x, r.min.y+i),
- color, nil, sp);
- draw(im, Rect(r.min.x, r.max.y-i, r.max.x, r.max.y),
- color, nil, Pt(sp.x, sp.y+Dy(r)-i));
- draw(im, Rect(r.min.x, r.min.y+i, r.min.x+i, r.max.y-i),
- color, nil, Pt(sp.x, sp.y+i));
- draw(im, Rect(r.max.x-i, r.min.y+i, r.max.x, r.max.y-i),
- color, nil, Pt(sp.x+Dx(r)-i, sp.y+i));
+ drawop(im, Rect(r.min.x, r.min.y, r.max.x, r.min.y+i),
+ color, nil, sp, op);
+ drawop(im, Rect(r.min.x, r.max.y-i, r.max.x, r.max.y),
+ color, nil, Pt(sp.x, sp.y+Dy(r)-i), op);
+ drawop(im, Rect(r.min.x, r.min.y+i, r.min.x+i, r.max.y-i),
+ color, nil, Pt(sp.x, sp.y+i), op);
+ drawop(im, Rect(r.max.x-i, r.min.y+i, r.max.x, r.max.y-i),
+ color, nil, Pt(sp.x+Dx(r)-i, sp.y+i), op);
+}
+
+void
+border(Image *im, Rectangle r, int i, Image *color, Point sp)
+{
+ borderop(im, r, i, color, sp, SoverD);
}