beyonder-gpu 0.1.0

GPU-accelerated renderer for the Beyond terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Renderer for AgentMessage blocks.

use crate::pipeline::RectInstance;
use beyonder_core::Block;

pub fn render_agent_message(
    _block: &Block,
    _x: f32,
    _y: f32,
    _width: f32,
    _height: f32,
    _scale: f32,
    _rects: &mut Vec<RectInstance>,
) {
    // Agent messages render as plain text — no background decoration.
}