Skip to content

Commit

Permalink
refactor(shader-ast-glsl): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 13, 2021
1 parent ab75a9f commit 4541c9f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/shader-ast-glsl/src/target.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,19 @@ import type { Fn } from "@thi.ng/api";
import { isBoolean } from "@thi.ng/checks/is-boolean";
import { isNumber } from "@thi.ng/checks/is-number";
import { unsupported } from "@thi.ng/errors/unsupported";
import {
defTarget,
import type {
FnCall,
FuncArg,
Index,
IndexM,
isMat,
isVec,
itemType,
Sym,
sym,
Term,
Type,
} from "@thi.ng/shader-ast";
import { isMat, isVec } from "@thi.ng/shader-ast/ast/checks";
import { itemType } from "@thi.ng/shader-ast/ast/item";
import { sym } from "@thi.ng/shader-ast/ast/sym";
import { defTarget } from "@thi.ng/shader-ast/target";
import { GLSLOpts, GLSLTarget, GLSLVersion } from "./api";

const RE_SEMI = /[};]$/;
Expand Down

0 comments on commit 4541c9f

Please sign in to comment.