I'm rendering a somewhat complex (200+ DrawingVisuals) 2D map using WPF, and I'm doing some restructuring of my rendering setup. Before I go and spend a lot of time building a system, maybe someone has experience here.
I have the option of creating 3-4 copies of each DrawingVisual for each visible state, for example, a DV for Selected, Hovered, or Normal. My question is, would it be more performant to just have a single DV and simply apply a shader Effect to it, rather than swapping out the whole drawing visual from the rendering hierarchy.
I don't know the performance cost of Effects vs just using a lot of pre-drawn Geometries and DrawingVisuals.
Anyone?