mirror of
https://github.com/penpot/penpot.git
synced 2025-02-28 17:56:50 -05:00
Merge pull request #5968 from penpot/ladybenko-fix-sampling-options-merge
🐛 Fix messed up rebase re: sampling options
This commit is contained in:
commit
bffbccac50
1 changed files with 2 additions and 0 deletions
|
@ -68,6 +68,7 @@ pub(crate) struct RenderState {
|
||||||
// Stack of nodes pending to be rendered.
|
// Stack of nodes pending to be rendered.
|
||||||
pub pending_nodes: Vec<NodeRenderState>,
|
pub pending_nodes: Vec<NodeRenderState>,
|
||||||
pub render_complete: bool,
|
pub render_complete: bool,
|
||||||
|
pub sampling_options: skia::SamplingOptions,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderState {
|
impl RenderState {
|
||||||
|
@ -100,6 +101,7 @@ impl RenderState {
|
||||||
render_in_progress: false,
|
render_in_progress: false,
|
||||||
pending_nodes: vec![],
|
pending_nodes: vec![],
|
||||||
render_complete: true,
|
render_complete: true,
|
||||||
|
sampling_options,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue