WinRT - last column of pixels is not filled correctly with FillRectangle
description
Hello,
I use the WinRT api on Windows 8 RP with Visual Studio 2012 RC and I assume the FillRectangle does not work.
For example:
WriteableBitmap bit = new WriteableBitmap(100, 100);
bit.FillRectangle(0, 0, 99, 99, Colors.White);
The last column of pixels is not filled.
I have attached a sample to reproduce the problem.
Jérôme