summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-01 16:39:10 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-01 16:39:10 -0300
commit80ddb3a1597c40cc320494820d4e06e9f1b29a82 (patch)
tree7cb9c44b2abef4fa048585a7e1f0ea2e41f96c0f /src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
parent933a8dc1052786edfc5a774fecaaa0d1e7acdd97 (diff)
Add s-ppux_5c7x-0x and mali400, fix ppu_rp2c02
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua112
1 files changed, 112 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
new file mode 100644
index 0000000..f42d18d
--- /dev/null
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
@@ -0,0 +1,112 @@
+return {
+ screen = {
+ width = 3840,
+ height = 2160,
+ },
+ origin = {
+ x = 0,
+ y = -60,
+ },
+ fps = 30,
+ shader = {
+ true,
+ opengl = '2.0-ES'
+ fragment = true,
+ },
+ physic = true,
+ sprite = {
+ true,
+ limits = {
+ false,
+ screen = false,
+ line = false,
+ },
+ size = {
+ small = {
+ width = 60,
+ height = 60,
+ },
+ default = {
+ width = 120,
+ height = 120,
+ },
+ defaultW = {
+ width = 120,
+ height = 60,
+ },
+ defaultH = {
+ width = 60,
+ height = 120,
+ },
+ big = {
+ width = 240,
+ height = 240,
+ },
+ bigW = {
+ width = 240,
+ height = 120,
+ },
+ bigH = {
+ width = 120,
+ height = 240,
+ },
+ huge = {
+ width = 480,
+ height = 480,
+ },
+ hugeW = {
+ width = 480,
+ height = 240,
+ },
+ hugeH = {
+ width = 240,
+ height = 480,
+ },
+ },
+ },
+ tile = {
+ true,
+ size = {
+ tiny = {
+ width = 60,
+ height = 60,
+ },
+ small = {
+ width = 120,
+ height = 120,
+ },
+ smallW = {
+ width = 120,
+ height = 60,
+ },
+ smallH = {
+ width = 60,
+ height = 120,
+ },
+ default = {
+ width = 240,
+ height = 240,
+ },
+ defaultW = {
+ width = 240,
+ height = 120,
+ },
+ defaultH = {
+ width = 120,
+ height = 240,
+ },
+ big = {
+ width = 480,
+ height = 480,
+ },
+ bigW = {
+ width = 480,
+ height = 240,
+ },
+ bigH = {
+ width = 240,
+ height = 480,
+ },
+ },
+ },
+}