From: Steinar H. Gunderson Date: Mon, 21 Jan 2013 23:41:03 +0000 (+0100) Subject: Allow for more than ten bits in subpixel precision measuring; modern llvmpipe seems... X-Git-Tag: 1.0~149^2 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=22c2b8fb28b152664d5ad6fe7420e1e37904bf95 Allow for more than ten bits in subpixel precision measuring; modern llvmpipe seems to have 11. --- diff --git a/init.cpp b/init.cpp index e0302d3..b8b3cb4 100644 --- a/init.cpp +++ b/init.cpp @@ -18,7 +18,7 @@ namespace { void measure_texel_subpixel_precision() { - static const unsigned width = 1024; + static const unsigned width = 4096; // Generate a destination texture to render to, and an FBO. GLuint dst_texnum, fbo;