Search found 2 matches

by yonako
Sun Jun 21, 2015 12:13 pm
Forum: Support and Development
Topic: [Solved] Images sent across threads are blank
Replies: 3
Views: 2072

Re: Images sent across threads are blank

Thanks, that fixed it. I'm now using love.image.newImageData() in the side thread and wrapping that with love.graphics.newImage() in the main thread. I'm curious as to why passing ImageData is okay but passing Image is not. Also, the documentation on love.thread should probably be updated Never mind...
by yonako
Sun Jun 21, 2015 3:21 am
Forum: Support and Development
Topic: [Solved] Images sent across threads are blank
Replies: 3
Views: 2072

[Solved] Images sent across threads are blank

I have a simple setup where one thread loads images and the main thread fetches them as needed and draws them. (This is to ameliorate loading large images which causes framerate hiccups) However, the images all appear as blank white when drawn. The dimensions of the white rectangle correspond correc...