feat(renderer): add Blinn-Phong shader, light uniforms, mesh pipeline

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 19:50:51 +09:00
parent ffd6d3786b
commit 04ca5df062
4 changed files with 160 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
pub mod gpu;
pub mod light;
pub mod obj;
pub mod pipeline;
pub mod vertex;
@@ -6,5 +7,6 @@ pub mod mesh;
pub mod camera;
pub use gpu::{GpuContext, DEPTH_FORMAT};
pub use light::{CameraUniform, LightUniform};
pub use mesh::Mesh;
pub use camera::{Camera, FpsController};