cranpose-render-wgpu 0.0.47

WGPU renderer backend for Cranpose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Cranpose Render WGPU

A GPU-accelerated rendering backend for Cranpose, powered by `wgpu`.

## When to Use

This is the default renderer for Cranpose. It provides high-performance rendering on Linux (Vulkan/GL), macOS (Metal), Windows (DX12/Vulkan), and Web (WebGL2/WebGPU). It supports advanced features like anti-aliased shapes and hardware-accelerated text rendering.

## Key Concepts

-   **WGPU**: The underlying graphics abstraction layer.
-   **Glyphon**: Used for efficient, high-quality text layout and rasterization.
-   **Batching**: The renderer automatically batches draw calls to minimize GPU overhead.

## Configuration

This renderer is enabled by default via the `renderer-wgpu` feature in the `cranpose` crate. No manual configuration is typically required.