summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/mali400.lua
blob: 4082473eb814a99ebc0aa7bb12713838933f9a25 (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
return {
  screen = {
    default = {
      width  = 1920,
      height = 1080,
    },
    big     = {
      width  = 3840,
      height = 2160,
    },
  },
  origin = {
    x = 0,
    y = 0,
  },
  fps    = 30,
  api    = 'opengl_es_2_0'
  shader = {
    true,
    fragment = true,
  },
  physic = true,
  sprite = {
    true,
    limits = {
     false,
     screen = false,
     line   = false,
    },
    size   = {
      default  = {
        width  =  64,
        height =  64,
      },
      big      = {
        width  = 128,
        height = 128,
      },
    },
  },
  tile   = {
    true,
    size = {
      default  = {
        width  = 128,
        height = 128,
      },
      big      = {
        width  = 256,
        height = 256,
      },
    },
  },
}