Skip to content

Instantly share code, notes, and snippets.

@paulirish
Created November 10, 2011 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulirish/cfdb557a27c2c46290cc to your computer and use it in GitHub Desktop.
Save paulirish/cfdb557a27c2c46290cc to your computer and use it in GitHub Desktop.
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function(callback){
window.setTimeout(callback, 1000 / 60);
};
})();
function startAudio(song_raw) {
try {
initializeCanvas();
recompileWAVFormatToNative(song_raw);
audioHandle = new XAudioServer(channels, sampleRate, sampleRate >> 2, sampleRate << 1, audioCheck, 0);
(function animloop(){
requestAnimFrame(animloop);
audioHandle.executeCallback();
})();
}
catch (e) {
alert(e.message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment