summaryrefslogtreecommitdiff
path: root/src/framebuffer.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-01-03 13:41:21 -0500
committerLLLL Colonq <llll@colonq>2025-01-03 13:41:21 -0500
commitf1b47ccb8a92280df51bb28b495829f8f7f8127e (patch)
treed5311a3d3135af498da0d808042b22c59fe5b2ae /src/framebuffer.rs
parent2f30c4d25f3e01fb4fc8089134a610195f1cdb13 (diff)
Add initial GLTF support
Diffstat (limited to 'src/framebuffer.rs')
-rw-r--r--src/framebuffer.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/framebuffer.rs b/src/framebuffer.rs
index fb6ab02..6d8d1b5 100644
--- a/src/framebuffer.rs
+++ b/src/framebuffer.rs
@@ -23,7 +23,6 @@ impl Framebuffer {
let upscaleh = context::RENDER_HEIGHT * ratio;
let offsetx = (windoww - upscalew) / 2.0;
let offsety = (windowh - upscaleh) / 2.0;
- log::info!("{} {} {} {} {} {}", windoww, windowh, upscalew, upscaleh, offsetx, offsety);
Self {
tex: None,
fbo: None,