Wondering why everything is running so slow...

Started by
1 comment, last by Krohm 9 years, 10 months ago

So I was casually tweaking some stuff, and suddely the performance dropped like hell, so i decided to look into it, and this popped up:

287mck1.png 1526087.jpg

Anyone else had stuff go that wrong?

-MIGI0027

FastCall22: "I want to make the distinction that my laptop is a whore-box that connects to different network"

Blog about... stuff (GDNet, WordPress): www.gamedev.net/blog/1882-the-cuboid-zone/, cuboidzone.wordpress.com/

Advertisement

Sort of, I had things just not work, and I tracked it down to this:


pD2DGaussianBlurEffect->SetValue(D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION, 3);

Seems simple enough right? Nothing scary there. Well silly me not checking HRESULTS for this sample code. You see, that function is a generic set property function that can take anything. And you see, that's supposed to be a floating point number. Rather than do the sane thing, and just not set the value and keep the old one, the effect gets flagged as invalid, which causes it to not render.

The true moral of the story is to always check your HRESULTs, but it still irks me how that operates.

Uhmph.

Previously "Krohm"

This topic is closed to new replies.

Advertisement