Elena Torró
1cb113dfeb
Merge pull request #8379 from penpot/superalex-fix-grouped-component-shadow
...
🐛 Fix grouped component shadow
2026-02-17 09:54:37 +01:00
Alejandro Alonso
0b2dfe7297
🐛 Fix grouped component shadow
2026-02-17 08:19:37 +01:00
Alejandro Alonso
fe6fb0534c
🐛 Fix focus mode for simple component
2026-02-17 07:23:09 +01:00
Elena Torro
fd6f70a740
🐛 Fix absolute z-index values on layout children
2026-02-13 11:41:16 +01:00
Elena Torro
2b525f0f48
🔧 Set up embedded editor
2026-02-12 09:34:20 +01:00
Elena Torro
4ed1a544f8
🐛 Fix stroke color aliasing when a shape has multiple strokes
2026-02-12 06:43:52 +01:00
Elena Torro
eede023d6b
🐛 Fix fill aliasing when a shape has multiple fills
2026-02-11 11:21:08 +01:00
Alejandro Alonso
8d033de145
Merge pull request #8299 from penpot/elenatorro-13242-review-performance
...
🔧 Improve layout performance
2026-02-11 10:45:40 +01:00
Elena Torró
47346e478e
Merge pull request #8303 from penpot/superalex-fix-stroke-opacity-for-boards
...
🐛 Fix stroke opacity for boards
2026-02-11 10:05:47 +01:00
Alejandro Alonso
f32c377f17
🐛 Fix stroke opacity for boards
2026-02-11 09:08:03 +01:00
Belén Albeza
1c270ac9c6
✨ Remove leftover println in render code
2026-02-10 10:59:47 +01:00
Elena Torro
969666b39b
🔧 Simplify view interaction log message
...
Remove zoom_changed from log output as it's no longer needed
for debugging after the tile optimization changes.
2026-02-09 11:44:50 +01:00
Elena Torro
a8322215dd
🔧 Optimize pan/zoom tile handling
...
- Add incremental tile update that preserves cache during pan
- Only invalidate tile cache when zoom changes
- Force visible tiles to render synchronously (no yielding)
- Increase interest area threshold from 2 to 3 tiles
2026-02-09 09:38:01 +01:00
Elena Torro
8ef6600cdc
🔧 Return HashSet from update_shape_tiles
...
Avoid final collect() allocation by returning HashSet directly.
Callers already use extend() which works with both types.
2026-02-09 09:35:04 +01:00
Elena Torro
a3764b9713
🔧 Avoid clone in rebuild_touched_tiles
...
Use std::mem::take instead of clone to avoid HashSet allocation.
The set was cleared anyway by clean_touched(), so take() is safe.
2026-02-09 09:35:03 +01:00
Alejandro Alonso
5be887f10b
🎉 Improve plain shape calculation
2026-02-03 12:44:43 +01:00
Alejandro Alonso
f7403935c8
🎉 Improve shadows rendering performance
2026-02-03 12:33:05 +01:00
Alejandro Alonso
7d3ac38749
🎉 Improve huge shapes rendering
2026-01-27 11:11:38 +01:00
Elena Torro
8d1bc6c50c
🐛 Fix flex layout sorting on reverse order with no z-index
2026-01-27 09:34:36 +01:00
Elena Torro
5209a8b423
🔧 Improve surface rendering performance
2026-01-26 16:10:22 +01:00
Elena Torro
5d7d23a2c7
🔧 Keep clear cached canvas
2026-01-22 08:51:58 +01:00
Elena Torro
499aac31a4
🔧 Improve tile invalidation to prevent visual flickering
...
When tiles are invalidated (during shape updates or page loading), the old tile
content is now kept visible until new content is rendered to replace it. This
provides a smoother visual experience during updates.
2026-01-21 15:42:52 +01:00
Elena Torro
962d7839a2
🔧 Add progressive rendering support for improved page load experience
...
When loading large pages with many shapes, the UI now remains responsive by
processing shapes in chunks (100 shapes at a time) and yielding to the browser
between chunks. Preview renders are triggered at 25%, 50%, and 75% progress to
give users visual feedback during loading.
2026-01-21 14:55:53 +01:00
Alejandro Alonso
6fa0c3af0c
🐛 Fix some tiles disappear after fast zoom and pan
2026-01-20 12:40:01 +01:00
Alejandro Alonso
311e124658
🎉 Reduce extrect work in tile traversal
...
Avoid repeated extrect calculations and simplify root ordering per tile.
2026-01-15 12:53:21 +01:00
Alejandro Alonso
afc914f486
🎉 Render simple shapes directly on Current
...
Bypass intermediate surfaces for simple shapes without effects.
2026-01-15 12:53:21 +01:00
Alejandro Alonso
84f750da0d
🎉 Skip heavy effects in fast mode
...
Avoid blur and shadow passes for text and shapes when FAST_MODE is enabled.
2026-01-15 08:45:21 +01:00
Alejandro Alonso
c60d74df62
🐛 Fix nested frames border clipping
2026-01-14 11:10:03 +01:00
Alejandro Alonso
d593e299e3
🐛 Fix mask erros on save/restore optimizations
2026-01-14 11:10:03 +01:00
Alejandro Alonso
4a8e02987f
🐛 Fix mask erros on save/restore optimizations
2026-01-14 11:10:03 +01:00
Alejandro Alonso
ee766e85a0
🎉 Wasm render dirty surfaces
2026-01-14 11:10:03 +01:00
Alejandro Alonso
35e3b7f19a
🎉 Root ids refactor
2026-01-14 11:10:03 +01:00
Alejandro Alonso
1810df232b
🎉 Ignore frames and groups when they have no visual extra information
2026-01-14 11:10:03 +01:00
Alejandro Alonso
3e99ad036c
🎉 Avoid unnecesary saves and restores
2026-01-14 11:10:03 +01:00
Alejandro Alonso
a948e49e51
🐛 Fix using cache on first zoom after pan
2025-12-30 10:03:24 +01:00
Alejandro Alonso
ab3a3ef43b
🎉 Resize cache only when required
2025-12-30 10:03:24 +01:00
alonso.torres
ea4d0e1238
✨ Calculate position data in wasm
2025-12-11 16:00:03 +01:00
Elena Torro
81bc1bb0af
🔧 Log performance when building using profile-macros
2025-12-09 15:25:13 +01:00
Elena Torro
b8feb6374d
🔧 Rebuild indices on zoom change, not pan
2025-12-09 11:26:03 +01:00
Elena Torro
0889df8e08
🔧 Skip slow operations on fast render
2025-12-09 11:26:03 +01:00
Elena Torro
9216d965ef
🔧 Update rendering settings to smooth render
2025-12-09 10:43:33 +01:00
Alejandro Alonso
e889413f26
🐛 Fix nested shadows clipping
2025-12-01 09:22:23 +01:00
Alejandro Alonso
63959a22cc
🐛 Fix svg attrs
2025-11-27 12:23:46 +01:00
Alejandro Alonso
8840246425
🐛 Fix bleeding masks
2025-11-27 12:23:46 +01:00
Alejandro Alonso
e3b87390f6
🐛 Fix nested shadows clipping
2025-11-27 12:23:46 +01:00
Alejandro Alonso
d9ab28e6ed
🐛 Fix nested clipping
2025-11-27 12:23:46 +01:00
alonso.torres
dd5f3396d1
🐛 Fix problem with layout z-index
2025-11-24 17:48:58 +01:00
alonso.torres
c2026918a4
✨ Improve cache rendering
2025-11-20 17:33:37 +01:00
Elena Torró
c13b58f42a
Merge pull request #7764 from penpot/superalex-fix-blurs
...
🐛 Fix shadows and blurs
2025-11-20 13:37:57 +01:00
alonso.torres
59845b756f
✨ Render WASM dashboard thumbnails
2025-11-20 11:56:25 +01:00