Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow for custom batchers #10885

Merged
merged 13 commits into from
Sep 11, 2024
Prev Previous commit
Next Next commit
add a final color for consistency
  • Loading branch information
GoodBoyDigital committed Sep 4, 2024
commit 82f772e72e967c220b50d7c28cc9af91d1b93af4
6 changes: 5 additions & 1 deletion src/rendering/high-shader/defaultProgramTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ const fragmentGPUTemplate = /* wgsl */`

{{main}}

return outColor * vColor;
var finalColor:vec4<f32> = outColor * vColor;

{{end}}

return finalColor;
};
`;

Expand Down
Loading