@@ -23,11 +23,11 @@ void memcpy_pitch(void *d, void *s, int w, int h, int spitch, int dpitch)
byte*sp=(byte*)s;
assert(h>=0);
if(h!=0)do{
for(;h!=0;--h){
memcpy(dp,sp,w);
dp+=dpitch;
sp+=spitch;
}while(--h);
}
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.