Skip to content

Commit

Permalink
minor(shader-ast-stdlib): fix target name for snoiseVec32()
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed May 24, 2023
1 parent 1bd5fef commit e76aaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shader-ast-stdlib/src/noise/simplex3.ts
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ export const snoise3 = defn(F, "snoise3", [V3], (v) => {
];
});

export const snoiseVec32 = defn(V2, "snoiseVec3", [V3], (p) => {
export const snoiseVec32 = defn(V2, "snoiseVec32", [V3], (p) => {
return [
ret(
vec2(

0 comments on commit e76aaca

Please sign in to comment.