Search found 3 matches

by drvillain
Tue Sep 22, 2009 3:51 pm
Forum: Support and Development
Topic: love.graphics.present() + dirty rects?
Replies: 9
Views: 4994

Re: love.graphics.present() + dirty rects?

what kind of preformace boost are you getting using frames + quads?
by drvillain
Tue Sep 22, 2009 2:29 pm
Forum: Support and Development
Topic: Rendering a 800x600 png, gets shurnk 50&%... why
Replies: 3
Views: 3549

Re: Rendering a 800x600 png, gets shurnk 50&%... why

Thanks, this is correct, and now rendering corectly
by drvillain
Tue Sep 22, 2009 5:01 am
Forum: Support and Development
Topic: Rendering a 800x600 png, gets shurnk 50&%... why
Replies: 3
Views: 3549

Rendering a 800x600 png, gets shurnk 50&%... why

Im loading an 800x600 png as a background. and the code forces me to scale it up 2x. just love.graphics.draw(graphics["bg"], 0, 0) will produce the image just takeing up 1 corner of the screen. 50% reduction. im forced to do love.graphics.draw(graphics["bg"], 0, 0,0,2,2) which is...