summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-08-15 04:48:53 -0400
committerLLLL Colonq <llll@colonq>2025-08-15 04:48:53 -0400
commit1da3eb369306ab5b88f580716201cf1fa4979936 (patch)
tree53b3d1ee5790958ee4d9636155b4fd04fc338087 /crates
parenta7fea4499ed84a9cb62775ddc198e63ec62ddd5a (diff)
Update
Diffstat (limited to 'crates')
-rw-r--r--crates/teleia/src/framebuffer.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/teleia/src/framebuffer.rs b/crates/teleia/src/framebuffer.rs
index b561dbe..e4cd529 100644
--- a/crates/teleia/src/framebuffer.rs
+++ b/crates/teleia/src/framebuffer.rs
@@ -2,6 +2,9 @@ use glow::HasContext;
use crate::context;
+#[cfg(target_arch = "wasm32")]
+use crate::Options;
+
pub struct Framebuffer {
pub tex: Option<glow::Texture>,
pub fbo: Option<glow::Framebuffer>,