├── .gitignore ├── LICENSE ├── README.md ├── docs ├── ASS specification.html ├── ASS tags (VSFilter 2.3.9).html ├── FAQ.html ├── Getting started.html ├── Lua 5.1 Manual.html ├── Lua 5.1 Reference.pdf ├── NyuFX ASS values.html ├── NyuFX GUI.html ├── NyuFX functions.html └── res │ ├── ASS_vals │ ├── ass_content.jpg │ ├── text_align.jpg │ ├── text_extents.png │ ├── text_sections.jpg │ └── times.jpg │ ├── GUI │ ├── GUI.jpg │ └── menu.jpg │ └── Lua │ ├── logo.gif │ ├── lua.css │ └── manual.css ├── include ├── 0_Extensions.lua ├── 1_ASSParser.lua └── 2_Main.lua ├── installer ├── NyuFX_banner.bmp ├── ar │ └── config.ini ├── de │ └── config.ini ├── en │ └── config.ini ├── fr │ └── config.ini ├── installer.nsi └── zh │ └── config.ini ├── lang ├── ar │ ├── nyufx.mo │ └── nyufx.po ├── de │ ├── nyufx.mo │ └── nyufx.po ├── en │ ├── nyufx.mo │ └── nyufx.po ├── fr │ ├── nyufx.mo │ └── nyufx.po ├── gettext.lua └── zh │ ├── nyufx.mo │ └── nyufx.po ├── src ├── ASSEditor.cpp ├── ASSEditor.h ├── About.cpp ├── About.h ├── App.cpp ├── Config.cpp ├── Config.h ├── EditorBase.cpp ├── EditorBase.h ├── FFmpeg 1.1 │ └── config.txt ├── GUI.h ├── GUI_events.cpp ├── GUI_interface.cpp ├── Generator.cpp ├── Generator.h ├── HelpWindow.cpp ├── HelpWindow.h ├── Lua.h ├── Lua5.1.5 │ ├── Lua5.1.5.sln │ ├── Lua5.1.5.vcxproj │ ├── Lua5.1.5.vcxproj.filters │ ├── WinIO.c │ ├── WinIO.h │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── LuaEditor.cpp ├── LuaEditor.h ├── NyuFX.sln ├── NyuFX.vcxproj ├── NyuFX.vcxproj.filters ├── Options.cpp ├── Options.h ├── OutputCtrl.cpp ├── OutputCtrl.h ├── Replace.cpp ├── Replace.h ├── SaveSymbol.cpp ├── SaveSymbol.h ├── Scripting.cpp ├── Scripting.h ├── System.cpp ├── System.h ├── TaskIcon.cpp ├── TaskIcon.h ├── llibs.h ├── ltable2.cpp ├── ltgdi.cpp ├── lva.cpp ├── resources.rc └── resources │ ├── NyuFX.ico │ ├── NyuFX_Logo_program.bmp │ └── nyu.wav └── templates ├── Fun ├── 3D_cube.lua ├── [mikeinel]draw_with_me.avi ├── audio_to_subtitle.lua ├── audio_to_subtitle_2.lua ├── bad_apple.mp3 ├── border_pixels.lua ├── create_audio.lua ├── create_image.lua ├── text_shape_pixels.lua └── video_to_images.lua ├── Tests ├── Functions │ ├── colorbars.mkv │ ├── convert.a_to_ass.lua │ ├── convert.ass_to_a.lua │ ├── convert.ass_to_rgb.lua │ ├── convert.image_to_pixels.lua │ ├── convert.rgb_to_ass.lua │ ├── convert.shape_to_pixels.lua │ ├── convert.text_to_pixels.lua │ ├── convert.text_to_shape.lua │ ├── io.load_ass.lua │ ├── io.progressbar.lua │ ├── io.write_line.lua │ ├── math.bezier.lua │ ├── math.degree.lua │ ├── math.distance.lua │ ├── math.ellipse.lua │ ├── math.ortho.lua │ ├── math.randomsteps.lua │ ├── math.randomway.lua │ ├── math.rotate.lua │ ├── math.round.lua │ ├── math.trim.lua │ ├── noise.png │ ├── pack.lua │ ├── print.lua │ ├── shape.bounding.lua │ ├── shape.ellipse.lua │ ├── shape.filter.lua │ ├── shape.glance.lua │ ├── shape.heart.lua │ ├── shape.move.lua │ ├── shape.rectangle.lua │ ├── shape.ring.lua │ ├── shape.split.lua │ ├── shape.star.lua │ ├── shape.tooutline.lua │ ├── shape.triangle.lua │ ├── string.ucharrange.lua │ ├── string.uchars.lua │ ├── string.ulen.lua │ ├── table.append.lua │ ├── table.copy.lua │ ├── table.create.lua │ ├── table.max.lua │ ├── table.tostring.lua │ ├── tgdi.create_context.lua │ ├── tgdi.load_image.lua │ ├── tgdi.save_png.lua │ ├── utils.distributor.lua │ ├── utils.frames.lua │ ├── utils.interpolate.lua │ ├── utils.text_extents.lua │ ├── va.codecs.lua │ ├── va.create_demuxer.lua │ └── va.formats.lua └── Variables │ ├── lines.lua │ ├── meta.lua │ └── styles.lua └── start.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/README.md -------------------------------------------------------------------------------- /docs/ASS specification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/ASS specification.html -------------------------------------------------------------------------------- /docs/ASS tags (VSFilter 2.3.9).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/ASS tags (VSFilter 2.3.9).html -------------------------------------------------------------------------------- /docs/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/FAQ.html -------------------------------------------------------------------------------- /docs/Getting started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/Getting started.html -------------------------------------------------------------------------------- /docs/Lua 5.1 Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/Lua 5.1 Manual.html -------------------------------------------------------------------------------- /docs/Lua 5.1 Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/Lua 5.1 Reference.pdf -------------------------------------------------------------------------------- /docs/NyuFX ASS values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/NyuFX ASS values.html -------------------------------------------------------------------------------- /docs/NyuFX GUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/NyuFX GUI.html -------------------------------------------------------------------------------- /docs/NyuFX functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/NyuFX functions.html -------------------------------------------------------------------------------- /docs/res/ASS_vals/ass_content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/ASS_vals/ass_content.jpg -------------------------------------------------------------------------------- /docs/res/ASS_vals/text_align.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/ASS_vals/text_align.jpg -------------------------------------------------------------------------------- /docs/res/ASS_vals/text_extents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/ASS_vals/text_extents.png -------------------------------------------------------------------------------- /docs/res/ASS_vals/text_sections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/ASS_vals/text_sections.jpg -------------------------------------------------------------------------------- /docs/res/ASS_vals/times.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/ASS_vals/times.jpg -------------------------------------------------------------------------------- /docs/res/GUI/GUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/GUI/GUI.jpg -------------------------------------------------------------------------------- /docs/res/GUI/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/GUI/menu.jpg -------------------------------------------------------------------------------- /docs/res/Lua/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/Lua/logo.gif -------------------------------------------------------------------------------- /docs/res/Lua/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/Lua/lua.css -------------------------------------------------------------------------------- /docs/res/Lua/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/docs/res/Lua/manual.css -------------------------------------------------------------------------------- /include/0_Extensions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/include/0_Extensions.lua -------------------------------------------------------------------------------- /include/1_ASSParser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/include/1_ASSParser.lua -------------------------------------------------------------------------------- /include/2_Main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/include/2_Main.lua -------------------------------------------------------------------------------- /installer/NyuFX_banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/NyuFX_banner.bmp -------------------------------------------------------------------------------- /installer/ar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/ar/config.ini -------------------------------------------------------------------------------- /installer/de/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/de/config.ini -------------------------------------------------------------------------------- /installer/en/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/en/config.ini -------------------------------------------------------------------------------- /installer/fr/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/fr/config.ini -------------------------------------------------------------------------------- /installer/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/installer.nsi -------------------------------------------------------------------------------- /installer/zh/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/installer/zh/config.ini -------------------------------------------------------------------------------- /lang/ar/nyufx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/ar/nyufx.mo -------------------------------------------------------------------------------- /lang/ar/nyufx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/ar/nyufx.po -------------------------------------------------------------------------------- /lang/de/nyufx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/de/nyufx.mo -------------------------------------------------------------------------------- /lang/de/nyufx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/de/nyufx.po -------------------------------------------------------------------------------- /lang/en/nyufx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/en/nyufx.mo -------------------------------------------------------------------------------- /lang/en/nyufx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/en/nyufx.po -------------------------------------------------------------------------------- /lang/fr/nyufx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/fr/nyufx.mo -------------------------------------------------------------------------------- /lang/fr/nyufx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/fr/nyufx.po -------------------------------------------------------------------------------- /lang/gettext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/gettext.lua -------------------------------------------------------------------------------- /lang/zh/nyufx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/zh/nyufx.mo -------------------------------------------------------------------------------- /lang/zh/nyufx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/lang/zh/nyufx.po -------------------------------------------------------------------------------- /src/ASSEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/ASSEditor.cpp -------------------------------------------------------------------------------- /src/ASSEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/ASSEditor.h -------------------------------------------------------------------------------- /src/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/About.cpp -------------------------------------------------------------------------------- /src/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/About.h -------------------------------------------------------------------------------- /src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/App.cpp -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/EditorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/EditorBase.cpp -------------------------------------------------------------------------------- /src/EditorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/EditorBase.h -------------------------------------------------------------------------------- /src/FFmpeg 1.1/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/FFmpeg 1.1/config.txt -------------------------------------------------------------------------------- /src/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/GUI.h -------------------------------------------------------------------------------- /src/GUI_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/GUI_events.cpp -------------------------------------------------------------------------------- /src/GUI_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/GUI_interface.cpp -------------------------------------------------------------------------------- /src/Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Generator.cpp -------------------------------------------------------------------------------- /src/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Generator.h -------------------------------------------------------------------------------- /src/HelpWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/HelpWindow.cpp -------------------------------------------------------------------------------- /src/HelpWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/HelpWindow.h -------------------------------------------------------------------------------- /src/Lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua.h -------------------------------------------------------------------------------- /src/Lua5.1.5/Lua5.1.5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/Lua5.1.5.sln -------------------------------------------------------------------------------- /src/Lua5.1.5/Lua5.1.5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/Lua5.1.5.vcxproj -------------------------------------------------------------------------------- /src/Lua5.1.5/Lua5.1.5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/Lua5.1.5.vcxproj.filters -------------------------------------------------------------------------------- /src/Lua5.1.5/WinIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/WinIO.c -------------------------------------------------------------------------------- /src/Lua5.1.5/WinIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/WinIO.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lapi.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lapi.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lauxlib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lauxlib.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lbaselib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lcode.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lcode.h -------------------------------------------------------------------------------- /src/Lua5.1.5/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldblib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldebug.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldebug.h -------------------------------------------------------------------------------- /src/Lua5.1.5/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldo.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldo.h -------------------------------------------------------------------------------- /src/Lua5.1.5/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ldump.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lfunc.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lfunc.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lgc.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lgc.h -------------------------------------------------------------------------------- /src/Lua5.1.5/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/linit.c -------------------------------------------------------------------------------- /src/Lua5.1.5/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/liolib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/llex.c -------------------------------------------------------------------------------- /src/Lua5.1.5/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/llex.h -------------------------------------------------------------------------------- /src/Lua5.1.5/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/llimits.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lmathlib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lmem.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lmem.h -------------------------------------------------------------------------------- /src/Lua5.1.5/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/loadlib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lobject.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lobject.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lopcodes.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lopcodes.h -------------------------------------------------------------------------------- /src/Lua5.1.5/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/loslib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lparser.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lparser.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lstate.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lstate.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lstring.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lstring.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lstrlib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ltable.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ltable.h -------------------------------------------------------------------------------- /src/Lua5.1.5/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ltablib.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ltm.c -------------------------------------------------------------------------------- /src/Lua5.1.5/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/ltm.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lua.h -------------------------------------------------------------------------------- /src/Lua5.1.5/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/luaconf.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lualib.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lundump.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lundump.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lvm.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lvm.h -------------------------------------------------------------------------------- /src/Lua5.1.5/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lzio.c -------------------------------------------------------------------------------- /src/Lua5.1.5/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Lua5.1.5/lzio.h -------------------------------------------------------------------------------- /src/LuaEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/LuaEditor.cpp -------------------------------------------------------------------------------- /src/LuaEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/LuaEditor.h -------------------------------------------------------------------------------- /src/NyuFX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/NyuFX.sln -------------------------------------------------------------------------------- /src/NyuFX.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/NyuFX.vcxproj -------------------------------------------------------------------------------- /src/NyuFX.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/NyuFX.vcxproj.filters -------------------------------------------------------------------------------- /src/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Options.cpp -------------------------------------------------------------------------------- /src/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Options.h -------------------------------------------------------------------------------- /src/OutputCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/OutputCtrl.cpp -------------------------------------------------------------------------------- /src/OutputCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/OutputCtrl.h -------------------------------------------------------------------------------- /src/Replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Replace.cpp -------------------------------------------------------------------------------- /src/Replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Replace.h -------------------------------------------------------------------------------- /src/SaveSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/SaveSymbol.cpp -------------------------------------------------------------------------------- /src/SaveSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/SaveSymbol.h -------------------------------------------------------------------------------- /src/Scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Scripting.cpp -------------------------------------------------------------------------------- /src/Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/Scripting.h -------------------------------------------------------------------------------- /src/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/System.cpp -------------------------------------------------------------------------------- /src/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/System.h -------------------------------------------------------------------------------- /src/TaskIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/TaskIcon.cpp -------------------------------------------------------------------------------- /src/TaskIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/TaskIcon.h -------------------------------------------------------------------------------- /src/llibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/llibs.h -------------------------------------------------------------------------------- /src/ltable2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/ltable2.cpp -------------------------------------------------------------------------------- /src/ltgdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/ltgdi.cpp -------------------------------------------------------------------------------- /src/lva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/lva.cpp -------------------------------------------------------------------------------- /src/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/resources.rc -------------------------------------------------------------------------------- /src/resources/NyuFX.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/resources/NyuFX.ico -------------------------------------------------------------------------------- /src/resources/NyuFX_Logo_program.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/resources/NyuFX_Logo_program.bmp -------------------------------------------------------------------------------- /src/resources/nyu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/src/resources/nyu.wav -------------------------------------------------------------------------------- /templates/Fun/3D_cube.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/3D_cube.lua -------------------------------------------------------------------------------- /templates/Fun/[mikeinel]draw_with_me.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/[mikeinel]draw_with_me.avi -------------------------------------------------------------------------------- /templates/Fun/audio_to_subtitle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/audio_to_subtitle.lua -------------------------------------------------------------------------------- /templates/Fun/audio_to_subtitle_2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/audio_to_subtitle_2.lua -------------------------------------------------------------------------------- /templates/Fun/bad_apple.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/bad_apple.mp3 -------------------------------------------------------------------------------- /templates/Fun/border_pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/border_pixels.lua -------------------------------------------------------------------------------- /templates/Fun/create_audio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/create_audio.lua -------------------------------------------------------------------------------- /templates/Fun/create_image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/create_image.lua -------------------------------------------------------------------------------- /templates/Fun/text_shape_pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/text_shape_pixels.lua -------------------------------------------------------------------------------- /templates/Fun/video_to_images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Fun/video_to_images.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/colorbars.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/colorbars.mkv -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.a_to_ass.lua: -------------------------------------------------------------------------------- 1 | print(convert.a_to_ass(255)) -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.ass_to_a.lua: -------------------------------------------------------------------------------- 1 | print(convert.ass_to_a("&HFF&")) -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.ass_to_rgb.lua: -------------------------------------------------------------------------------- 1 | print(convert.ass_to_rgb("&HF02094&")) -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.image_to_pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/convert.image_to_pixels.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.rgb_to_ass.lua: -------------------------------------------------------------------------------- 1 | print(convert.rgb_to_ass(255, 0, 128)) -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.shape_to_pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/convert.shape_to_pixels.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.text_to_pixels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/convert.text_to_pixels.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/convert.text_to_shape.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/convert.text_to_shape.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/io.load_ass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/io.load_ass.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/io.progressbar.lua: -------------------------------------------------------------------------------- 1 | io.progressbar(0.5) -------------------------------------------------------------------------------- /templates/Tests/Functions/io.write_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/io.write_line.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.bezier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.bezier.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.degree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.degree.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.distance.lua: -------------------------------------------------------------------------------- 1 | print(math.distance(20, 30)) -------------------------------------------------------------------------------- /templates/Tests/Functions/math.ellipse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.ellipse.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.ortho.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.ortho.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.randomsteps.lua: -------------------------------------------------------------------------------- 1 | for i=1, 10 do 2 | print(math.randomsteps(0, 1, 0.2)) 3 | end -------------------------------------------------------------------------------- /templates/Tests/Functions/math.randomway.lua: -------------------------------------------------------------------------------- 1 | for i=1, 10 do 2 | print(math.randomway()) 3 | end -------------------------------------------------------------------------------- /templates/Tests/Functions/math.rotate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.rotate.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.round.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/math.round.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/math.trim.lua: -------------------------------------------------------------------------------- 1 | for i=-2, 2 do 2 | print(math.trim(i,-1,1)) 3 | end -------------------------------------------------------------------------------- /templates/Tests/Functions/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/noise.png -------------------------------------------------------------------------------- /templates/Tests/Functions/pack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/pack.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/print.lua: -------------------------------------------------------------------------------- 1 | print("Ja", "はい", "نعم") -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.bounding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/shape.bounding.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.ellipse.lua: -------------------------------------------------------------------------------- 1 | print(shape.ellipse(50, 40)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/shape.filter.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.glance.lua: -------------------------------------------------------------------------------- 1 | print(shape.glance(5, 2, 50)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.heart.lua: -------------------------------------------------------------------------------- 1 | print(shape.heart(50, 0)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/shape.move.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.rectangle.lua: -------------------------------------------------------------------------------- 1 | print(shape.rectangle(1, 1)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.ring.lua: -------------------------------------------------------------------------------- 1 | print(shape.ring(100,80)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.split.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/shape.split.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.star.lua: -------------------------------------------------------------------------------- 1 | print(shape.star(8, 50, 10)) -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.tooutline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/shape.tooutline.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/shape.triangle.lua: -------------------------------------------------------------------------------- 1 | print(shape.triangle(60)) -------------------------------------------------------------------------------- /templates/Tests/Functions/string.ucharrange.lua: -------------------------------------------------------------------------------- 1 | print(string.ucharrange("く", 1)) -------------------------------------------------------------------------------- /templates/Tests/Functions/string.uchars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/string.uchars.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/string.ulen.lua: -------------------------------------------------------------------------------- 1 | print(string.ulen("お願い")) -------------------------------------------------------------------------------- /templates/Tests/Functions/table.append.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/table.append.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/table.copy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/table.copy.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/table.create.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/table.create.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/table.max.lua: -------------------------------------------------------------------------------- 1 | print(table.max({1, a = true})) -------------------------------------------------------------------------------- /templates/Tests/Functions/table.tostring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/table.tostring.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/tgdi.create_context.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/tgdi.create_context.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/tgdi.load_image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/tgdi.load_image.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/tgdi.save_png.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/tgdi.save_png.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/utils.distributor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/utils.distributor.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/utils.frames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/utils.frames.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/utils.interpolate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/utils.interpolate.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/utils.text_extents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/utils.text_extents.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/va.codecs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/va.codecs.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/va.create_demuxer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/va.create_demuxer.lua -------------------------------------------------------------------------------- /templates/Tests/Functions/va.formats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Functions/va.formats.lua -------------------------------------------------------------------------------- /templates/Tests/Variables/lines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Variables/lines.lua -------------------------------------------------------------------------------- /templates/Tests/Variables/meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Variables/meta.lua -------------------------------------------------------------------------------- /templates/Tests/Variables/styles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/Tests/Variables/styles.lua -------------------------------------------------------------------------------- /templates/start.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youka/NyuFX/HEAD/templates/start.lua --------------------------------------------------------------------------------