Direct2D Not Linking Whole Library in C++Builder

59 Views Asked by At

I've got a C++ project in Embarcadero RAD Studio 10.1 Berlin. The project is setup to use Direct2D. Canvas drawing works just fine with the TDirect2DCanvas class. Everything renders smoothly. However, I need to use render targets. I am getting a linking error when I try to do this. For example, when I try this:

canvas->RenderTarget->SetTransform(D2D1::Matrix3x2F::Rotation(15.0, D2D1PointF(100, 100)));

I get the following linking error:

[ilink32 Error] Error: Unresolved external 'D2D1MakeRotateMatrix' referenced from C:\DP\TRUNK\SRC\CLIENTSIDE\APPLICATIONS\VIEWER\WIN32\DEBUG\MIMAGE.OBJ

I thought C++Builder was supposed to already be setup to link against Direct2D if I just included the headers. Can anyone help me link against the appropriate files?

0

There are 0 best solutions below