Skip to content

Commit

Permalink
fix(runPipelineEmscript): Lower mesh cellData
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Sep 13, 2022
1 parent cf503d6 commit 50185ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipeline/internal/runPipelineEmscripten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function runPipelineEmscripten (pipelineModule: PipelineEmscriptenModule, args:
const pointsPtr = setPipelineModuleInputArray(pipelineModule, mesh.points, index, 0)
const cellsPtr = setPipelineModuleInputArray(pipelineModule, mesh.cells, index, 1)
const pointDataPtr = setPipelineModuleInputArray(pipelineModule, mesh.pointData, index, 2)
const cellDataPtr = setPipelineModuleInputArray(pipelineModule, mesh.pointData, index, 3)
const cellDataPtr = setPipelineModuleInputArray(pipelineModule, mesh.cellData, index, 3)
const meshJSON = {
meshType: mesh.meshType,
name: mesh.name,
Expand Down

0 comments on commit 50185ca

Please sign in to comment.