X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;ds=sidebyside;f=shaders%2Fmodel_font.fs;h=31e4e8dd39b6e9fe0a1d3ff6e2f5f0cdc33cce9d;hb=c52dacb7bc07e300312e45d605d206222dcbb181;hp=673238c39417885bb90baa8822d299437d34a9e6;hpb=d6171f1c56789b2ca79efa3313fbbf74a13bda7a;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/shaders/model_font.fs b/shaders/model_font.fs index 673238c..31e4e8d 100644 --- a/shaders/model_font.fs +++ b/shaders/model_font.fs @@ -13,6 +13,5 @@ in vec3 aCo; void main() { compute_motion_vectors(); - vec4 diffuse = texture( uTexMain, aUv ); - FragColor = vec4( diffuse.rgb, 1.0 ) * uColour; + FragColor = texture( uTexMain, aUv ) * uColour; }