imported Löve GLES branch (changeset 1ba9037e558b)

This commit is contained in:
Martin Felis
2013-12-05 18:05:13 +01:00
parent 41b2db04a7
commit 2644d1ee18
615 changed files with 150300 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
function b64(name)
local i = io.popen("base64 " .. name)
local encoded = i:read("*a")
i:close()
local output = ("local %s =\n%q"):format(name:gsub("%.", "_"), encoded)
return output
end
for i, v in ipairs(arg) do
print(b64(v))
end