Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dilshod

Pages: [1]
1
Support / Re: FloydSteinbergDithering bug
« on: March 12, 2017, 03:47:23 am »
I was trying different dithering algorithms. I found Sierra Lite gives better dithering compared to others. And making small manipulations on input and output color gives better result.

2
Support / FloydSteinbergDithering bug
« on: February 13, 2017, 07:49:14 am »
Hi,
In the FloydSteinbergDithering script, i found lines:
Code: [Select]
case TextureFormat.RGB565:
quantShiftR = 5;
quantShiftB = 6;
quantShiftG = 5;
quantShiftA = 0;
break;

imho, it should be:
Code: [Select]
case TextureFormat.RGB565:
quantShiftR = 3;
quantShiftB = 3;
quantShiftG = 2;
quantShiftA = 0;
break;

Pages: [1]