Skip to content

Commit

Permalink
fix: resize canvas should clear the context
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Sep 22, 2022
1 parent 29e14f7 commit 8ece352
Showing 1 changed file with 47 additions and 4 deletions.
51 changes: 47 additions & 4 deletions src/lib.rs
Expand Up @@ -72,15 +72,18 @@ pub struct CanvasRenderingContext2DAttributes {

#[napi]
pub struct CanvasElement {
pub width: u32,
pub height: u32,
pub(crate) width: u32,
pub(crate) height: u32,
pub(crate) ctx: ClassInstance<CanvasRenderingContext2D>,
}

#[napi]
impl CanvasElement {
#[napi(constructor)]
pub fn new(mut env: Env, mut this: This, width: u32, height: u32) -> Result<Self> {
fn create_context(
mut env: Env,
width: u32,
height: u32,
) -> Result<ClassInstance<CanvasRenderingContext2D>> {
let ctx = CanvasRenderingContext2D::into_instance(
CanvasRenderingContext2D {
context: Context::new(width, height, ColorSpace::default())?,
Expand All @@ -96,12 +99,52 @@ impl CanvasElement {
.with_property_attributes(PropertyAttributes::Writable | PropertyAttributes::Configurable),
])?;
env.adjust_external_memory((width * height * 4) as i64)?;
Ok(ctx)
}

#[napi(constructor)]
pub fn new(env: Env, mut this: This, width: u32, height: u32) -> Result<Self> {
let ctx = Self::create_context(env, width, height)?;
this.define_properties(&[Property::new("ctx")?
.with_value(&ctx)
.with_property_attributes(PropertyAttributes::Default)])?;
Ok(Self { width, height, ctx })
}

#[napi(setter)]
pub fn set_width(&mut self, mut env: Env, width: u32) -> Result<()> {
self.width = width;
let height = self.height;
let old_ctx = mem::replace(
&mut self.ctx.context,
Context::new(width, height, ColorSpace::default())?,
);
env.adjust_external_memory((width as i64 - old_ctx.width as i64) * 4)?;
Ok(())
}

#[napi(getter)]
pub fn get_width(&self) -> u32 {
self.width
}

#[napi(setter)]
pub fn set_height(&mut self, mut env: Env, height: u32) -> Result<()> {
self.height = height;
let width = self.width;
let old_ctx = mem::replace(
&mut self.ctx.context,
Context::new(width, height, ColorSpace::default())?,
);
env.adjust_external_memory((height as i64 - old_ctx.height as i64) * 4)?;
Ok(())
}

#[napi(getter)]
pub fn get_height(&self) -> u32 {
self.height
}

#[napi]
pub fn get_context(
&mut self,
Expand Down

0 comments on commit 8ece352

Please sign in to comment.