mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-09-08 14:10:32 +00:00
Rename the Group type to Graphic everywhere (#3009)
This commit is contained in:
parent
309a64340b
commit
0f638314dc
44 changed files with 267 additions and 277 deletions
|
@ -18,14 +18,14 @@ impl<T: RenderComplexity> RenderComplexity for Table<T> {
|
|||
|
||||
impl RenderComplexity for Artboard {
|
||||
fn render_complexity(&self) -> usize {
|
||||
self.group.render_complexity()
|
||||
self.content.render_complexity()
|
||||
}
|
||||
}
|
||||
|
||||
impl RenderComplexity for Graphic {
|
||||
fn render_complexity(&self) -> usize {
|
||||
match self {
|
||||
Self::Group(table) => table.render_complexity(),
|
||||
Self::Graphic(table) => table.render_complexity(),
|
||||
Self::Vector(table) => table.render_complexity(),
|
||||
Self::RasterCPU(table) => table.render_complexity(),
|
||||
Self::RasterGPU(table) => table.render_complexity(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue