From 83234ae90630ae37f09a0cab27155522ff15da02 Mon Sep 17 00:00:00 2001 From: Robert Chisholm Date: Wed, 27 Sep 2023 13:24:20 +0100 Subject: [PATCH] Fix docs CI --- include/flamegpu/runtime/AgentFunction.cuh | 2 ++ include/flamegpu/runtime/AgentFunctionCondition.cuh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/flamegpu/runtime/AgentFunction.cuh b/include/flamegpu/runtime/AgentFunction.cuh index e12d303d8..4f6d74095 100644 --- a/include/flamegpu/runtime/AgentFunction.cuh +++ b/include/flamegpu/runtime/AgentFunction.cuh @@ -42,6 +42,8 @@ typedef void(AgentFunctionWrapper)( * Initialises FLAMEGPU_API instance * @param error_buffer Buffer used for detecting and reporting exception::DeviceErrors (flamegpu must be built with FLAMEGPU_SEATBELTS enabled for this to be used) * @param d_curve_table Pointer to curve hash table in device memory + * @param d_agent_name Pointer to agent name string + * @param d_state_name Pointer to agent state string * @param d_env_buffer Pointer to env buffer in device memory * @param d_agent_output_nextID If agent output is enabled, this points to a global memory src of the next suitable agent id, this will be atomically incremented at birth * @param popNo Total number of agents executing the function (number of threads launched) diff --git a/include/flamegpu/runtime/AgentFunctionCondition.cuh b/include/flamegpu/runtime/AgentFunctionCondition.cuh index 3a7933cd4..c2287d3f7 100644 --- a/include/flamegpu/runtime/AgentFunctionCondition.cuh +++ b/include/flamegpu/runtime/AgentFunctionCondition.cuh @@ -32,6 +32,8 @@ typedef void(AgentFunctionConditionWrapper)( * Initialises FLAMEGPU_API instance * @param error_buffer Buffer used for detecting and reporting exception::DeviceErrors (flamegpu must be built with FLAMEGPU_SEATBELTS enabled for this to be used) * @param d_curve_table Pointer to curve hash table in device memory + * @param d_agent_name Pointer to agent name string + * @param d_state_name Pointer to agent state string * @param d_env_buffer Pointer to env buffer in device memory * @param popNo Total number of agents exeucting the function (number of threads launched) * @param d_rng Array of curand states for this kernel