Skip to content

Commit

Permalink
core: Remove Matrix3D from prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
cookie-s committed Dec 1, 2024
1 parent 01c9101 commit 31c6e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core/src/avm2/globals/flash/geom/transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ use crate::avm2::globals::slots::*;
use crate::avm2::parameters::ParametersExt;
use crate::avm2::{Activation, Error, Object, TObject, Value};
use crate::display_object::TDisplayObject;
use crate::prelude::{DisplayObject, Matrix, Matrix3D, Twips};
use crate::prelude::{DisplayObject, Matrix, Twips};
use crate::{avm2_stub_getter, avm2_stub_setter};
use ruffle_render::matrix3d::Matrix3D;
use ruffle_render::quality::StageQuality;
use swf::{ColorTransform, Fixed8, Rectangle};

Expand Down
1 change: 0 additions & 1 deletion core/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pub use crate::display_object::{
DisplayObject, DisplayObjectContainer, HitTestOptions, TDisplayObject, TDisplayObjectContainer,
};
pub use ruffle_render::matrix::Matrix;
pub use ruffle_render::matrix3d::Matrix3D;
pub use std::ops::RangeBounds;
pub use swf::{CharacterId, Color, Point, Rectangle, Twips};
pub use tracing::{error, info, warn};
Expand Down

0 comments on commit 31c6e11

Please sign in to comment.