shithub: qk1

ref: 0f96a8c069a9ea5459f9eb0372316bdb9aa4e526
dir: /span.c/

View raw version
#include "quakedef.h"

void
dospan(byte *pdest, byte *pbase, int s, int t, int sstep, int tstep, int spancount, int cachewidth)
{
	do{
		*pdest++ = pbase[(s >> 16) + (t >> 16) * cachewidth];
		s += sstep;
		t += tstep;
	}while(--spancount);
}