Skip to content

Commit

Permalink
fix: expose error shader
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnsgn committed Jun 6, 2022
1 parent 5ebc245 commit d3967fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions shaders/pipeline/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ import overlayFrag from "./overlay.frag.js";
import overlayVert from "./overlay.vert.js";
import helperFrag from "./helper.frag.js";
import helperVert from "./helper.vert.js";
import errorFrag from "./error.frag.js";
import errorVert from "./error.vert.js";

export default {
depthPass: { vert: depthPassVert, frag: depthPassFrag },
depthPrePass: { depthPassVert, frag: depthPrePassFrag },
material: { vert: materialVert, frag: materialFrag },
overlay: { vert: overlayVert, frag: overlayFrag },
helper: { vert: helperVert, frag: helperFrag },
error: { vert: errorVert, frag: errorFrag },
};

0 comments on commit d3967fa

Please sign in to comment.