renderUtf8Text shouldn't die witout a text

this is exposed by #38 and #40
pull/2/merge
Dobrica Pavlinusic 12 years ago
parent db6b997cab
commit c470c0328a

@ -44,6 +44,10 @@ function clearglyphcache()
end
function renderUtf8Text(buffer, x, y, face, facehash, text, kerning)
if text == nil then
print("# renderUtf8Text called without text");
return
end
-- may still need more adaptive pen placement when kerning,
-- see: http://freetype.org/freetype2/docs/glyphs/glyphs-4.html
local pen_x = 0

Loading…
Cancel
Save