Difference between revisions of "General Architecture"
From GiderosMobile
Line 1: | Line 1: | ||
Gideros Studio has a layered architecture. The midlayer consists of OpenGL and C++ functions. Scripting language is powered by Lua, 10th most widely used computer language in the world. Lua virtual machine (LuaVM) converts the functions and callbacks to C++ functions and OpenGL, and each graphical command is drawn directy on the screen using the device’s OpenGL hardware accelerator. This results in very high performance applications and games. | Gideros Studio has a layered architecture. The midlayer consists of OpenGL and C++ functions. Scripting language is powered by Lua, 10th most widely used computer language in the world. Lua virtual machine (LuaVM) converts the functions and callbacks to C++ functions and OpenGL, and each graphical command is drawn directy on the screen using the device’s OpenGL hardware accelerator. This results in very high performance applications and games. | ||
− | [[File: | + | [[File:Gideros_framework_drawing.png]] |
From top to bottom, the following parts constitute the whole Gideros framework: | From top to bottom, the following parts constitute the whole Gideros framework: |
Latest revision as of 17:18, 10 September 2018
Gideros Studio has a layered architecture. The midlayer consists of OpenGL and C++ functions. Scripting language is powered by Lua, 10th most widely used computer language in the world. Lua virtual machine (LuaVM) converts the functions and callbacks to C++ functions and OpenGL, and each graphical command is drawn directy on the screen using the device’s OpenGL hardware accelerator. This results in very high performance applications and games.
From top to bottom, the following parts constitute the whole Gideros framework: