summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/load/gpu/mali400.lua
blob: a65449b5b0a7cb1e47ad6eaecc02a0c1228fe7d6 (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
return {
  screen = {
    default = {
      width  = 1920,
      height = 1080,
      fps    = 30,
      origin = {
        x = 0,
        y = 0,
      },
    },
    big     = {
      width  = 3840,
      height = 2160,
      fps    = 30,
      origin = {
        x = 0,
        y = 0,
      },
    },
  colors = {
    32bpp,
    transparent = alpha,
    mode        = {
      zero  = 16bpp,
      one   = 32bpp,
    },
  },
  mesh   = true,
  api    = 'opengl_es_2_0',
  shader = {
    true,
    fragment = true,
  },
  physic = true,
  sprite = {
    true,
    layers = many,
    limits = {
     false,
     screen = false,
     line   = false,
    },
    size   = {
      default  = {
        width  =  64,
        height =  64,
      },
      big      = {
        width  = 128,
        height = 128,
      },
    },
  },
  tile   = {
    true,
    layers = many,
    size = {
      default  = {
        width  = 128,
        height = 128,
      },
      big      = {
        width  = 256,
        height = 256,
      },
    },
  },
}