I tried to use Direct2D in our map application. But it is much more slower than GDI because D2D draw the whole screen. When user scroll the window, GDI scroll the video buffer and ONLY draw a small portion of screen. That is why GDI is faster than D2D.
My questions are:
- How D2D scroll screen? (Similar to
ScrollWindow()
) - How I only draw a small portion of screen in D2D? (Similar to
InvalidateRect()
andGetClipBox()
)
I found a solution in How to scroll window contents using Direct2D api? Does anyone have a better solution?
My example is:
D2D1::Matrix3x2F matrix;
CPoint org(GetDeviceScrollPosition());
FLOAT scaleW=(FLOAT)m_totalLog.cx/m_totalDev.cx;
FLOAT scaleH=(FLOAT)m_totalLog.cy/m_totalDev.cy;
if(scaleW > scaleH) scaleW = scaleH;
matrix.SetProduct(D2D1::Matrix3x2F::Scale(scaleW, scaleH, D2D1::Point2F(0.0f, 0.0f)), D2D1::Matrix3x2F::Translation((FLOAT)-org.x, (FLOAT)-org.y));
//"Scale Device Screen" * "Scroll Device Screen"
pRenderTarget->SetTransform(matrix);
in CScrollView
. But the performance is very poor.
I found one solution: Using "CDCRenderTarget". Then we can use the scroll/GetClipBox() functions in CScrollView.