Thread: 3dbuzz videos
View Single Post
  #11  
Old 08-20-2014, 01:38 PM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

Re: 3dbuzz videos


Also, its very important to take account of the following notes:

"In other languages: remember always to use either unsigned right-shift operators or unsigned type declarations, according to features available in the language – signed right shift operations will fail; also, in strToLongs(), to avoid running off the end of the string, some languages may need the string to be padded to a multiple of 4 characters, with the equivalent of for (var p=0; p<3-(s.length-1)%4; p++) s += '\0';."

(Chris Veness)
Reply With Quote