renderLayerMask method

Future<Int64> renderLayerMask()

Get the current render layer visibility bitmask.

Implementation

Future<Int64> renderLayerMask() async {
  final config = await _getConfig();
  final rendering = config.rendering;
  return rendering.hasRenderLayerMask()
      ? rendering.renderLayerMask
      : Int64(-1);
}