render to framebuffer

This commit is contained in:
CDaut 2025-09-30 23:01:40 +02:00
parent 3953ef2bfb
commit ad6722fd3c
Signed by: clara
GPG key ID: 223391B52FAD4463
4 changed files with 102 additions and 3 deletions

7
raytracer/Cargo.lock generated
View file

@ -20,6 +20,12 @@ version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
[[package]]
name = "libc"
version = "0.2.176"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174"
[[package]]
name = "log"
version = "0.4.28"
@ -68,6 +74,7 @@ dependencies = [
name = "raytracer"
version = "0.1.0"
dependencies = [
"libc",
"log",
"uefi",
]