Skip to content

Commit

Permalink
merian-nodes: GraphRun: rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
LDAP committed Nov 15, 2024
1 parent 2aad9a3 commit 7957936
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/merian-nodes/graph/graph_run.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,17 +176,17 @@ class GraphRun {
const ProfilerHandle& profiler,
const CommandPoolHandle& cmd_pool,
const ResourceAllocatorHandle& allocator,
const std::chrono::nanoseconds time_delta,
const std::chrono::nanoseconds elapsed,
const std::chrono::nanoseconds elapsed_run,
const std::chrono::nanoseconds& time_delta,
const std::chrono::nanoseconds& elapsed,
const std::chrono::nanoseconds& elapsed_since_connect,
const uint64_t total_iterations) {
this->iteration = iteration;
this->in_flight_index = in_flight_index;
this->cmd_pool = cmd_pool;
this->allocator = allocator;
this->time_delta = time_delta;
this->elapsed = elapsed;
this->elapsed_since_connect = elapsed_run;
this->elapsed_since_connect = elapsed_since_connect;
this->total_iteration = total_iterations;
wait_semaphores.clear();
wait_stages.clear();
Expand Down

0 comments on commit 7957936

Please sign in to comment.