mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-31 19:30:03 +00:00
eliminate old async call stack computation / call stack cache code
This commit is contained in:
@@ -11497,10 +11497,8 @@ rd_frame(void)
|
||||
//
|
||||
Access *frame_access_restore = rd_state->frame_access;
|
||||
DI_Scope *frame_di_scope_restore = rd_state->frame_di_scope;
|
||||
CTRL_Scope *frame_ctrl_scope_restore = rd_state->frame_ctrl_scope;
|
||||
rd_state->frame_access = access_open();
|
||||
rd_state->frame_di_scope = di_scope_open();
|
||||
rd_state->frame_ctrl_scope = ctrl_scope_open();
|
||||
rd_state->got_frame_call_stack_tree = 0;
|
||||
|
||||
//////////////////////////////
|
||||
@@ -17327,10 +17325,8 @@ rd_frame(void)
|
||||
//
|
||||
access_close(rd_state->frame_access);
|
||||
di_scope_close(rd_state->frame_di_scope);
|
||||
ctrl_scope_close(rd_state->frame_ctrl_scope);
|
||||
rd_state->frame_access = frame_access_restore;
|
||||
rd_state->frame_di_scope = frame_di_scope_restore;
|
||||
rd_state->frame_ctrl_scope = frame_ctrl_scope_restore;
|
||||
|
||||
//////////////////////////////
|
||||
//- rjf: submit rendering to all windows
|
||||
|
||||
@@ -601,7 +601,6 @@ struct RD_State
|
||||
F32 frame_dt;
|
||||
Access *frame_access;
|
||||
DI_Scope *frame_di_scope;
|
||||
CTRL_Scope *frame_ctrl_scope;
|
||||
CTRL_CallStackTree frame_call_stack_tree;
|
||||
B32 got_frame_call_stack_tree;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user