summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
blob: f42d18d423b75f1877157927b4ed61e19f73a413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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,
      },
    },
  },
}