It seems that the current invert drawing method (dst = fg XOR bg XOR dst)
is not good for anti-aliased font. I think that using GDK_INVERT is
good for it.
diff -r 9e3cdd762964 src/gui_gtk_x11.c
--- a/src/gui_gtk_x11.c Sat May 04 04:40:15 2013 +0200
+++ b/src/gui_gtk_x11.c Sun May 05 16:23:33 2013 +0900
@@ -5271,13 +5271,9 @@
if (gui.drawarea->window == NULL)
return;
- values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
- values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
- values.function = GDK_XOR;
+ values.function = GDK_INVERT;
invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
&values,
- GDK_GC_FOREGROUND |
- GDK_GC_BACKGROUND |
GDK_GC_FUNCTION);
gdk_gc_set_exposures(invert_gc, gui.visibility !=
GDK_VISIBILITY_UNOBSCURED);
--
Yukihiro Nakadaira - [email protected]
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.