getContext3d method

RenderingContext? getContext3d({
  1. bool alpha = true,
  2. bool depth = true,
  3. bool stencil = false,
  4. bool antialias = true,
  5. bool premultipliedAlpha = true,
  6. bool preserveDrawingBuffer = false,
})

Implementation

RenderingContext? getContext3d(
    {bool alpha = true,
    bool depth = true,
    bool stencil = false,
    bool antialias = true,
    bool premultipliedAlpha = true,
    bool preserveDrawingBuffer = false}) {
  final options = {
    'alpha': alpha,
    'depth': depth,
    'stencil': stencil,
    'antialias': antialias,
    'premultipliedAlpha': premultipliedAlpha,
    'preserveDrawingBuffer': preserveDrawingBuffer,
  }.jsify();
  return getContext('webgl', options) ??
      getContext('experimental-webgl', options);
}