Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Developing U++ » U++ TheIDE and Library: Releases and ChangeLogs » Painter 2.0
Re: Painter 2.0 [message #20241 is a reply to message #20111] Tue, 03 March 2009 23:52 Go to previous messageGo to previous message
Mindtraveller is currently offline  Mindtraveller
Messages: 917
Registered: August 2007
Location: Russia, Moscow rgn.
Experienced Contributor

Just a few words about Painter after a little using it.

First of all, big thanks to U++ authors. Antialising was jusr the thing I was looking for some applications. This makes visualization really eye-candy in a number of cases. Very useful thing, thanks!

Second, I`ve found very little bug in PainterExample when tested it with BackPaint:
//lines 84-85 @ main.cpp:
		for(int y = 0; y + 32 < sz.cy; y += 32)
			for(int x = 0; x + 32 < sz.cx; x += 32)

//should be changed to 
		for(int y = 0; y < sz.cy; y += 32)
			for(int x = 0; x < sz.cx; x += 32)


Third, one little remark about Subpixel antialiasing mode. This makes lines look better but text looks too blurry, especially middle-sized. It`s bad for eyes IMO. So when one draws any complex things with good (subpixel) quality - it looks like one needs to split drawing in two stages. One for text (simple AA), and second for geometry (subpixel AA). This looks too complex.
These are just my thoughts and I`m not a professional in subpixel AA applied to fonts, so I may be wrong of course. A kind of user`s point of view. Smile
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: ide: Compare with file, SVN history
Next Topic: MT
Goto Forum:
  


Current Time: Fri May 10 11:55:42 CEST 2024

Total time taken to generate the page: 0.02559 seconds