rusting_engine 0.1.45

A high-performance Vulkano-based 3D engine with GPU physics.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shader module - Contains all GPU shaders for the rendering engine.
//!
//! This module exports shader modules that are compiled at build time:
//! - Vertex shaders: Transform vertices and prepare for rasterization
//! - Fragment shaders: Calculate pixel colors with PBR lighting
//! - Compute shaders: Physics simulation and culling
//!
//! Shaders are written in GLSL and loaded via vulkano-shaders.
//! Each shader type has multiple variants for different rendering needs.

pub mod compute;
pub mod fragment;
pub mod vertex;