diff options
author | Jason Tsai <jason@pews.dev> | 2024-01-27 07:25:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 23:25:38 +0000 |
commit | 919bfe0b0801c4ce931a2d301ce9c03303873df4 (patch) | |
tree | 0c138d74f6c1763775897bc78f440c88bef26cc8 /components/media | |
parent | 5574492505e49f26d46408cd12ddb128c87b1064 (diff) | |
download | servo-919bfe0b0801c4ce931a2d301ce9c03303873df4.tar.gz servo-919bfe0b0801c4ce931a2d301ce9c03303873df4.zip |
chore: re-export servo-media types (#31180)
Diffstat (limited to 'components/media')
-rw-r--r-- | components/media/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/media/lib.rs b/components/media/lib.rs index 0bbe40378f0..e746d668ba1 100644 --- a/components/media/lib.rs +++ b/components/media/lib.rs @@ -11,7 +11,7 @@ use std::sync::{Arc, Mutex}; use euclid::default::Size2D; use serde::{Deserialize, Serialize}; -use servo_media::player::context::{GlApi, GlContext, NativeDisplay, PlayerGLContext}; +pub use servo_media::player::context::{GlApi, GlContext, NativeDisplay, PlayerGLContext}; use webrender_traits::{ WebrenderExternalImageApi, WebrenderExternalImageRegistry, WebrenderImageSource, }; |