I'm trying to draw a few images on a canvas, to make sure the images are loaded when I draw them, I preload them using an array.
var num = 0,
length = 3,
images = {
img1: '/img/img1.png',
img2: '/img/img2.png',
img3: '/img/img3.png'
}
for(var i in images)
{
var tmp = new Image();
tmp.src = images[i];
tmp.onload = function()
{
num ++;
if(num == length)
{
startDoingStuff();
}
}
}
After preloading the startDoingStuff is fired where I use the image again
<snip>
this.img = new Image();
img.src = images[id].src;
</snip>
This works in Firefox and Opera but not in Chrome. Chrome probably thinks the images aren't loaded because if I put yet another onload it will work. Which is stupid because the images were already loaded :/
Only thing I found to solve this is by putting the loaded images in another array (or overwriting the original array) thus keeping reference.
Why doesn't Chrome not realize he already has the images in cache and use them when asked for?