X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=shaders%2Fmodel_font.fs;h=fa8c6e78b89ad2815bb085763135c80753153639;hb=be5e25dee2c54c2a22ca3bbb5bbe0eb6149343be;hp=d0d285106708153a6d4552d5a0ef0a9c4efdca5e;hpb=c2b59441df0383807ba093295af2e4400e552f39;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/shaders/model_font.fs b/shaders/model_font.fs index d0d2851..fa8c6e7 100644 --- a/shaders/model_font.fs +++ b/shaders/model_font.fs @@ -8,9 +8,10 @@ in vec4 aNorm; in vec3 aCo; #include "motion_vectors_fs.glsl" +#include "depth_compare.glsl" -void main() -{ +void main(){ + depth_compare_dither(); compute_motion_vectors(); oColour = texture( uTexMain, aUv ) * uColour; }