ref: 05455d82d6bd6d707c8fac3bff07a29d8a2b0ecf
dir: /span.c/
#include "quakedef.h" void dospan(pixel_t *pdest, pixel_t *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); }