rendering: integrate DrawList with SoRenderManager - #54
Open
tritao wants to merge 5 commits into
Open
Conversation
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 12:38
bdd71fa to
c2af805
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 12:55
c2af805 to
34e4d8a
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 13:07
34e4d8a to
af7efe3
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 15:51
af7efe3 to
42dbdb1
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 17:03
42dbdb1 to
35fddb9
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 17:15
35fddb9 to
f78aa13
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
2 times, most recently
from
August 15, 2026 23:32
267f77a to
b87a07a
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 15, 2026 23:53
b87a07a to
2fd2e24
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 00:00
2fd2e24 to
7ba42cd
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 00:03
7ba42cd to
8763137
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
2 times, most recently
from
August 16, 2026 09:49
6844a7f to
bdc3ff7
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 10:00
bdc3ff7 to
ab2c651
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
2 times, most recently
from
August 16, 2026 16:25
abd0efb to
0dfe465
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 16:34
0dfe465 to
d387f33
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 18:05
d387f33 to
ff8eb7a
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 18:22
ff8eb7a to
0316dba
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 18:47
0316dba to
1b82964
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 19:41
1b82964 to
63442a7
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
2 times, most recently
from
August 16, 2026 20:15
896a29b to
c39b0fc
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 16, 2026 20:20
c39b0fc to
28a6430
Compare
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 17, 2026 11:57
28a6430 to
a5fd8f7
Compare
tritao
changed the base branch from
stack/drawlist-picking
to
stack/drawlist-render-planner
August 17, 2026 12:00
tritao
force-pushed
the
stack/drawlist-manager-rebuilt
branch
from
August 17, 2026 12:27
a5fd8f7 to
9ba7d93
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds on #52.
Purpose
The retained renderer is not useful to applications until it can be selected
and driven through Coin's existing render-manager APIs. This PR connects the
DrawList pipeline to
SoRenderManagerwhile keeping renderer implementationdetails and application interaction policy out of the manager.
What changed
SoRenderManager.and execution.
OpenGL context is valid.
Ownership and scope
The manager chooses and orchestrates a pipeline. It does not define what
selection means or own long-lived application identity. Selection and
highlight targets remain frame-local renderer inputs; applications retain
their own policy and object model.
Render layers, delayed replay, and context-loss lifecycle are added in #55.
Validation