mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-21 21:26:12 +00:00
Add marker breadcrumbs to event browser. Closes #1031
This commit is contained in:
@@ -297,6 +297,17 @@ If no capture is loaded or the EID doesn't correspond to a known event, ``None``
|
||||
)");
|
||||
virtual const DrawcallDescription *GetDrawcallForEID(uint32_t eventId) = 0;
|
||||
|
||||
DOCUMENT(R"(Determines if a given EID is visible with the current filters applied to the event
|
||||
browser.
|
||||
|
||||
If no capture is loaded or the EID doesn't correspond to a known event, ``False`` will be returned.
|
||||
|
||||
:param int eventId: The EID to look up.
|
||||
:return: Whether or not the event is currently visible (passing the filters).
|
||||
:rtype: bool
|
||||
)");
|
||||
virtual bool IsAPIEventVisible(uint32_t eventId) = 0;
|
||||
|
||||
DOCUMENT(R"(Registers a new event browser filter function.
|
||||
|
||||
Filter functions are available as $name() so long as they don't shadow an existing function. The
|
||||
|
||||
Reference in New Issue
Block a user