X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=shaders%2Fmodel_font.fs;h=31e4e8dd39b6e9fe0a1d3ff6e2f5f0cdc33cce9d;hb=b3ca3b7a45eec11c46eb19772e10021177665adb;hp=673238c39417885bb90baa8822d299437d34a9e6;hpb=c34dde859968ced3dc7e8dd7be29f676689813d3;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; }