From 58a7d81dc55835fb0f5cc6a3f14288d722f83c91 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 26 May 2013 01:48:39 +0200 Subject: gl_video: improve dithering Use a different algorithm to generate the dithering matrix. This looks much better than the previous ordered dither matrix with its cross-hatch artifacts. The matrix generation algorithm as well as its implementation was contributed by Wessel Dankers aka Fruit. The code in dither.c is his implementation, reformatted and with static global variables removed by me. The new matrix is uploaded as float texture - before this commit, it was a normal integer fixed point matrix. This means dithering will be disabled on systems without float textures. The size of the dithering matrix can be configured, as the matrix is generated at runtime. The generation of the matrix can take rather long, and is already unacceptable with size 8. The default is at 6, which takes about 100 ms on a Core2 Duo system with dither.c compiled at -O2, which I consider just about acceptable. The old ordered dithering is still available and can be selected by putting the dither=ordered sub-option. The ordered dither matrix generation code was moved to dither.c. This function was originally written by Uoti Urpala. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 182094993e..1662f6f1e1 100644 --- a/Makefile +++ b/Makefile @@ -90,7 +90,7 @@ SOURCES-$(DIRECT3D) += video/out/vo_direct3d.c \ SOURCES-$(DSOUND) += audio/out/ao_dsound.c SOURCES-$(GL) += video/out/gl_common.c video/out/gl_osd.c \ video/out/vo_opengl.c video/out/gl_lcms.c \ - video/out/gl_video.c \ + video/out/gl_video.c video/out/dither.c \ video/out/vo_opengl_old.c \ video/out/pnm_loader.c -- cgit v1.2.3