You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switch to LuaJIT to improve Lua code performance and improve the speed of the tile cluster example by caching the channel extration. The rgbaGetChannel function takes more time to run than one might expect because it has to allocate memory and prepare a new string.
# Gentoo fix needs include directory set to /usr/include/fltk/ or /usr/include/fltk-1/ for older versions of FLTK if you are using a different distribution then this may not apply to you.
Copy file name to clipboardExpand all lines: config.lua
+12-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
You should have received a copy of the GNU General Public License
14
14
along with Retro Graphics Toolkit. If not, see <http://www.gnu.org/licenses/>.
15
-
Copyright Sega16 (or whatever you wish to call me) (2012-2016)
15
+
Copyright Sega16 (or whatever you wish to call me) (2012-2020)
16
16
--]]
17
17
18
18
--[[
@@ -24,6 +24,17 @@ Warning: This file is executed very early. Before the project objects are ready.
24
24
--]]
25
25
26
26
serpent=require("serpent.src.serpent")
27
+
-- You must install compat53 and bit32 to use luajit.
28
+
29
+
-- There are a few ways to go about this. One is to install locally. This is helpful if these libraries cannot be installed with your package manager and you don't want to run as root.
0 commit comments