WIP #35

Open
david wants to merge 135 commits from klubhaus/sideline:feature/capability-based-deps into main
3 changed files with 16 additions and 1 deletions
Showing only changes of commit dfe42b0883 - Show all commits

15
engine/legacy/__init__.py Normal file
View File

@@ -0,0 +1,15 @@
"""
Legacy rendering modules for backwards compatibility.
This package contains deprecated rendering code from the old pipeline architecture.
These modules are maintained for backwards compatibility with adapters and tests,
but should not be used in new code.
New code should use the Stage-based pipeline architecture instead.
Modules:
- render: Legacy font/gradient rendering functions
- layers: Legacy layer compositing and effect application
All modules in this package are marked deprecated and will be removed in a future version.
"""

View File

@@ -24,7 +24,7 @@ from engine.effects import (
vis_offset,
vis_trunc,
)
from engine.render import big_wrap, lr_gradient, lr_gradient_opposite
from engine.legacy.render import big_wrap, lr_gradient, lr_gradient_opposite
from engine.terminal import RST, W_COOL
MSG_META = "\033[38;5;245m"