]> git.sesse.net Git - movit/commitdiff
Correct/update a comment on rounding.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 20 Feb 2016 13:19:19 +0000 (14:19 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 20 Feb 2016 13:19:19 +0000 (14:19 +0100)
init.h

diff --git a/init.h b/init.h
index 7e1e13028b35bd6a0069c45828df88f7133b535f..9646cd48661dc9ce909db72f0f8fdd426c98bf7c 100644 (file)
--- a/init.h
+++ b/init.h
@@ -50,17 +50,13 @@ extern float movit_texel_subpixel_precision;
 
 // Some GPUs use very inaccurate fixed-function circuits for rounding
 // floating-point values to 8-bit outputs, leading to absurdities like
-// the roundoff point between 128 and 129 being 128.62 instead of 128.6.
+// the roundoff point between 128 and 129 being 128.62 instead of 128.5.
 // We test, for every integer, x+0.48 and x+0.52 and check that they
 // round the right way (giving some leeway, but not a lot); the number
 // of errors are stored here.
 //
-// If this value is above 0, the extension GL_EXT_gpu_shader4 is available
-// (giving round()) and you have enabled dithering, we will round off
-// explicitly at the very end of the shader.
-//
-// Note: I don't know of any cards that round off wrong (well, outside
-// our tolerance) and do not have this extension.
+// If this value is above 0, we will round off explicitly at the very end
+// of the shader.
 extern int movit_num_wrongly_rounded;
 extern bool movit_shader_rounding_supported;