Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Update dartdoc for gpu.dart #54529

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions lib/gpu/lib/gpu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/// The Flutter GPU library.
/// Flutter GPU is a low level API for building rendering packages from scratch.
///
/// To use, import `package:flutter_gpu/gpu.dart`.
/// To use, first add an SDK dependency in your `pubspec.yaml` file:
/// ```
/// dependencies:
/// flutter_gpu:
/// sdk: flutter
/// ```
/// And then add an import statement in your Dart files:
/// ```dart
/// import `package:flutter_gpu/gpu.dart`;
/// ```
///
/// See also:
///
/// * [Flutter GPU Wiki page](https://github.com/flutter/flutter/wiki/Flutter-GPU).
/// * [Flutter GPU documentation](https://github.com/flutter/engine/blob/main/docs/impeller/Flutter-GPU.md).
library flutter_gpu;

import 'dart:ffi';
Expand Down