1
0
Fork 0
forked from wry/wry
wry/src/portal/ptl_render_ctx.rs
2023-10-22 20:42:35 +02:00

6 lines
147 B
Rust

use {crate::gfx_api::GfxContext, std::rc::Rc, uapi::c};
pub struct PortalRenderCtx {
pub dev_id: c::dev_t,
pub ctx: Rc<dyn GfxContext>,
}