rename function because ghost cells sounds cooler
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-12-12 16:17:45 -05:00
parent 71ba3029cb
commit 46ac3448e3

View File

@ -196,7 +196,7 @@ void fluid_grid2_set_bounds_continuity(
/** /**
* Sets the bounds to the neighbor's value * Sets the bounds to the neighbor's value
*/ */
void fluid_grid2_set_bounds_neighbor( void fluid_grid2_set_bounds_ghost_cell(
Environment * environment, Environment * environment,
int sourceType, int sourceType,
float * target float * target
@ -342,7 +342,7 @@ LIBRARY_API void fluid_grid2_set_bounds(
case BOUND_SET_VECTOR_V: case BOUND_SET_VECTOR_V:
case BOUND_SET_VECTOR_W: case BOUND_SET_VECTOR_W:
case BOUND_SET_DENSITY: { case BOUND_SET_DENSITY: {
fluid_grid2_set_bounds_neighbor(environment,vector_dir,target); fluid_grid2_set_bounds_ghost_cell(environment,vector_dir,target);
} break; } break;
} }
} }