Blurry canvas drawing
Posted: Tue Sep 25, 2018 4:11 pm
I'm again having some problems with canvases!
I have 2 situations which should(?) be identical :
1.
2.
however case 2 the text is appears blurry even though i'm still drawing on integer coordinates...
Anyone know why?
Edit : added small example .love
I have 2 situations which should(?) be identical :
1.
Code: Select all
function love.draw()
love.graphics.printf("lol",0,0,100,"left")
end
Code: Select all
function love.load()
c1 = love.graphics.newCanvas(100,100)
love.graphics.setCanvas(c1)
love.graphics.printf("lol",0,0,100,"left")
love.graphics.setCanvas()
end
function love.draw()
love.graphics.draw(c1)
end
Anyone know why?
Edit : added small example .love