Skip to main content

WPF application with DropShadowEffect renders incorrectly on nVidia GeForce drivers 185.85 and greater

For those of you who develop using WPF, I ran into the following issue recently:

I developed MuvUnder Cover: The Album Art Sleuth, a WPF application, and with the latest nVidia drivers it displays erratic rendering of the interface. Graphical elements are missing, are half showing, when you mouseover them they appear and then randomly disappear, etc.

I have tested this on a Geforce 7800 GTX and GeForce 7300 LE with the following driver versions:

8.15.11.9038 – tested and broken
8.15.11.8618 – tested and broken
8.15.11.8585 – tested and broken (this was the first of the GeForce/ION drivers)

I tracked it down to the following cause, with a solution:

I had the following DropShadowEffect set on a lot of controls:

<DropShadowEffect x:Key=”DropShadowEffectDefault”
ShadowDepth=”4″
Opacity=”0.75″
BlurRadius=”5″ />

All of the controls that had that set where the ones that were showing the erratic missing, showing on mouseover, half rendered issue.

I then switched back to the following software rendered dropshadow:

<DropShadowBitmapEffect x:Key=”DropShadowBitmapEffectDefault”
ShadowDepth=”4″
Softness=”0.4″
Opacity=”0.75″
Noise=”0.01″/> <!– Setting Noise forces it so it isn’t automatically changed to DropShadowEffect (nVidia bug with DropShadowEffect)–>

and everything rendered correctly.

You can follow the Microsoft Connect bug I reported to see if/when there is a fix and which side of the fence (nVidia or Microsoft) it comes from at: https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=478676

John

John Rennemeyer is a software engineer that started his own development company MuvEnum, LLC in 2005. Born in Utah, he is a father of six, husband of one, and grandparent of none. His current programming passions include Xamarin, WPF, SharePoint, and their supporting technologies. His current non-programming passions include spending time with his family and hanging out with friends while enjoying food and fun. How's that for specific?