git: 9front

ref: 7742301e372613a91753e238d42f6b6b80e4c9fc
dir: /sys/src/libdraw/debug.c/

View raw version
#include <u.h>
#include <libc.h>
#include <draw.h>

void
drawsetdebug(int v)
{
	uchar *a;
	a = bufimage(display, 1+1);
	if(a == 0){
		fprint(2, "drawsetdebug: %r\n");
		return;
	}
	a[0] = 'D';
	a[1] = v;
}