texture.dart 3.27 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'package:flutter/foundation.dart';

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
import 'box.dart';
import 'layer.dart';
import 'object.dart';

/// A rectangle upon which a backend texture is mapped.
///
/// Backend textures are images that can be applied (mapped) to an area of the
/// Flutter view. They are created, managed, and updated using a
/// platform-specific texture registry. This is typically done by a plugin
/// that integrates with host platform video player, camera, or OpenGL APIs,
/// or similar image sources.
///
/// A texture box refers to its backend texture using an integer ID. Texture
/// IDs are obtained from the texture registry and are scoped to the Flutter
/// view. Texture IDs may be reused after deregistration, at the discretion
/// of the registry. The use of texture IDs currently unknown to the registry
/// will silently result in a blank rectangle.
///
/// Texture boxes are repainted autonomously as dictated by the backend (e.g. on
/// arrival of a video frame). Such repainting generally does not involve
/// executing Dart code.
///
/// The size of the rectangle is determined by the parent, and the texture is
/// automatically scaled to fit.
///
/// See also:
///
34
///  * [TextureRegistry](/javadoc/io/flutter/view/TextureRegistry.html)
35
///    for how to create and manage backend textures on Android.
36
///  * [TextureRegistry Protocol](/ios-embedder/protocol_flutter_texture_registry-p.html)
37
///    for how to create and manage backend textures on iOS.
38
class TextureBox extends RenderBox {
39 40 41
  /// Creates a box backed by the texture identified by [textureId], and use
  /// [filterQuality] to set texture's [FilterQuality].
  TextureBox({
42
    required int textureId,
43
    bool freeze = false,
44
    FilterQuality filterQuality = FilterQuality.low,
45
  }) : _textureId = textureId,
46
      _freeze = freeze,
47
      _filterQuality = filterQuality;
48 49 50 51 52 53 54 55 56 57 58

  /// The identity of the backend texture.
  int get textureId => _textureId;
  int _textureId;
  set textureId(int value) {
    if (value != _textureId) {
      _textureId = value;
      markNeedsPaint();
    }
  }

59 60 61 62 63 64 65 66 67 68
  /// When true the texture will not be updated with new frames.
  bool get freeze => _freeze;
  bool _freeze;
  set freeze(bool value) {
    if (value != _freeze) {
      _freeze = value;
      markNeedsPaint();
    }
  }

69
  /// {@macro flutter.widgets.Texture.filterQuality}
70 71 72
  FilterQuality get filterQuality => _filterQuality;
  FilterQuality _filterQuality;
  set filterQuality(FilterQuality value) {
73 74 75 76
    if (value != _filterQuality) {
      _filterQuality = value;
      markNeedsPaint();
    }
77 78
  }

79 80 81 82 83 84 85 86 87 88
  @override
  bool get sizedByParent => true;

  @override
  bool get alwaysNeedsCompositing => true;

  @override
  bool get isRepaintBoundary => true;

  @override
89 90
  @protected
  Size computeDryLayout(covariant BoxConstraints constraints) {
91
    return constraints.biggest;
92 93 94
  }

  @override
95
  bool hitTestSelf(Offset position) => true;
96 97 98

  @override
  void paint(PaintingContext context, Offset offset) {
99 100
    context.addLayer(TextureLayer(
      rect: Rect.fromLTWH(offset.dx, offset.dy, size.width, size.height),
101
      textureId: _textureId,
102
      freeze: freeze,
103
      filterQuality: _filterQuality,
104 105 106
    ));
  }
}