(properties)
| 1031 | } |
| 1032 | |
| 1033 | checkGPUAcceleration(properties) { |
| 1034 | return properties.some(p => |
| 1035 | p.includes('transform3d') || |
| 1036 | p.includes('translateZ') || |
| 1037 | p.includes('will-change') |
| 1038 | ); |
| 1039 | } |
| 1040 | |
| 1041 | analyzePaintComplexity(properties) { |
| 1042 | let complexity = 'low'; |