tessera_ui/renderer/compute/
command.rs

1//! Compute command trait and related types.
2//!
3//! This module defines the `ComputeCommand` trait that marks structs as compute operations
4//! that can be processed by the GPU compute pipeline system.
5
6use crate::renderer::drawer::command::AsAny;
7
8/// Trait for GPU compute operations that can be dispatched through the unified command system.
9pub trait ComputeCommand: AsAny + Send + Sync {}