Advertisement
Vanhapolle

Still dont work checkerboard

Dec 31st, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. for (pptry = 0 ; pptry <= (image_h-1); pptry = pptry + 1)
  2. {
  3. for (pptrx = 0 ; pptrx <= (image_w-1); pptrx = pptrx + 1)
  4. {
  5.  
  6. pptr=pptrx*bytesperpixel+pptry*image_w*bytesperpixel;
  7.  
  8. pixcol=((pptrx + pptry)% 2)*255;
  9. *(image+pptr)=0x0;
  10. *(image+pptr+1)=pixcol;
  11. };
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement