diff options
author | 2016-04-04 11:28:22 +0200 | |
---|---|---|
committer | 2016-04-04 11:33:34 +0200 | |
commit | cdc04a9b7c72343b67f24be1c1a0d01780dafd8d (patch) | |
tree | a12995d0cdad152f381b1e8f8f4754ab4827a09c /scripts/src/lib.lua | |
parent | 57e9e774cd056973a036d2b75273d84cea383494 (diff) |
screen: POC||GTFO of svg rendering from inside the rom. [O. Galibert]
It's damn slow, ~50ms/frame on cdkong. Caching and/or hw accel will
solve that easily. It doesn't look very good, nanosvg need better
anti-aliasing. It also doesn't do texturing very well and images not
at all, so some of our current svgs won't look good. But all that's
fixable.
Diffstat (limited to 'scripts/src/lib.lua')
-rw-r--r-- | scripts/src/lib.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/lib.lua b/scripts/src/lib.lua index c43bbecb291..3c84b7a9ac9 100644 --- a/scripts/src/lib.lua +++ b/scripts/src/lib.lua @@ -64,6 +64,7 @@ project "utils" MAME_DIR .. "src/lib/util/jedparse.h", MAME_DIR .. "src/lib/util/md5.cpp", MAME_DIR .. "src/lib/util/md5.h", + MAME_DIR .. "src/lib/util/nanosvg.cpp", MAME_DIR .. "src/lib/util/opresolv.cpp", MAME_DIR .. "src/lib/util/opresolv.h", MAME_DIR .. "src/lib/util/options.cpp", |