-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathinternalBenchmarkResults.ts
108 lines (107 loc) · 2.09 KB
/
internalBenchmarkResults.ts
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
import { BenchmarkRow } from './types';
export const internalBenchmarkResults: BenchmarkRow[] = [
{
date: '2021.01.29',
device: 'ONEPLUS A6003',
fps: 58,
gpu: 'Adreno (TM) 630',
mobile: true,
resolution: '2280 x 1080',
},
{
date: '2021.01.29',
device: 'Google Pixel 3a',
fps: 20,
gpu: 'Adreno (TM) 615',
mobile: true,
resolution: '2088 x 1080',
},
{
date: '2021.01.29',
device: 'Google Pixel 5',
fps: 42,
gpu: 'Adreno (TM) 620',
mobile: true,
resolution: '2340 x 1080',
},
{
date: '2021.01.29',
device: 'Google Pixel 4',
fps: 60,
gpu: 'Adreno (TM) 640',
mobile: true,
resolution: '2280 x 1080',
},
{
date: '2021.01.29',
device: 'Xiaomi Mi 9T',
fps: 34,
gpu: 'Adreno (TM) 618',
mobile: true,
resolution: '2210 x 1080',
},
{
date: '2021.01.29',
device: 'Google Pixel XL',
fps: 28,
gpu: 'Adreno (TM) 530',
mobile: true,
resolution: '2392 x 1440',
},
{
date: '2021.01.29',
device: 'Samsung GM-J600FN',
fps: 10,
gpu: 'Mali-T830',
mobile: true,
resolution: '1480 x 720',
},
{
date: '2021.01.29',
device: 'Samsung Galaxy S7 (SM-930x)',
fps: 27,
gpu: 'Adreno (TM) 530',
mobile: true,
resolution: '2560 x 1140',
},
{
date: '2021.01.29',
device: 'motorola moto g(7) play',
fps: 18,
gpu: 'Adreno (TM) 506',
mobile: true,
resolution: '1512 x 720',
},
{
date: '2021.01.29',
device: 'Samsung S8+ SM-G955F',
fps: 54,
gpu: 'Mali-G71',
mobile: true,
resolution: '2220 x 1080',
},
{
date: '2021.01.29',
device: 'Samsung S9+ SM-G965F',
fps: 56,
gpu: 'Mali-G72',
mobile: true,
resolution: '2220 x 1080',
},
{
date: '2021.01.29',
device: 'Apple iPhone 12 Pro Max',
fps: 60,
gpu: 'Apple A14 GPU',
mobile: true,
resolution: '2688 x 1242',
},
{
date: '2021.01.29',
device: 'Apple iPad Pro (12.9 inch) (4th generation)',
fps: 60,
gpu: 'Apple A12Z GPU',
mobile: true,
resolution: '2732 x 2048',
},
];