Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
2k views

Is TDirect2DCanvas slow or am I doing something wrong?

While looking for alternatives to replace GDI, I was trying to test Delphi's 2010 TDirect2DCanvas performance in Windows 7. I tested it by drawing a huge polyline using Direct2D and the result was ...
5
votes
5answers
315 views

SetLineSpacing() does not work in DirectWrite - why?

I'm rendering text in Direct2D/DirectWrite, but calling SetLineSpacing() on either TextFormat or TextLayout seems to have no effect. Does anyone know why?
4
votes
1answer
460 views

Smooth Video Rendering in C#

I am trying to find a way to render video in WPF with lower CPU usage than MediaElement. The goal is smooth and low CPU video playback as much as Direct3D/DirectDraw video rendering in C++ ...
4
votes
2answers
645 views

What's the best method for drawing overlay graphics on Windows?

I'm working with a Win32 application that needs to create a variety of custom window types. In particular, these windows are often non-rectangle, have shadows, or are mostly transparent. I'm ...
3
votes
1answer
229 views

Direct2D interface and blurry text issue

My new application will feature a rich interface which should be resizable on-the-fly uses transparent icons/images etc. For this application I'm trying to decide on using the new Direct2D API against ...
3
votes
1answer
495 views

How can I provide a different rendering target to Direct2D?

I'm using Direct2D in C# to render a small gui framework for my research project. I'm not very used to working on Windows or with DirectX. I'm using a Windows Forms control to create a render target, ...
3
votes
3answers
973 views

Win32: Is there a replacement GDI32.dll that uses hardware acceleration?

Has anyone out there created a version of GDI32.dll that takes advantage of hardware acceleration available on the machine? gdiplus.dll? Starting with Windows Vista, GDI is no longer hardware ...
2
votes
2answers
325 views

Directwrite: Getting a font's height

My objective: I want to get the height of an IDWriteTextFormat's font so I can calculate how many lines of text can fit in an IDWriteTextLayout of a certain height. My problem: Right now I'm ...
2
votes
1answer
207 views

How is selection/picking supposed to work in Direct2D?

I want to move my C# application from GDI+ to Direct2D (C++/CLI wrapper) for performance reasons. However I don't know how to solve the picking part. I have some shapes and images that I can move ...
2
votes
1answer
152 views

Direct2D - Nothing is being drawn to the screen, something wrong in the way I'm handling arrays in C++

Hello everyone and thank you for looking. This is a follow up to the original question posted here. I have a base class that I define thusly: class DrawableShape { public: virtual HRESULT ...
2
votes
4answers
2k views

Why don't Direct2D and DirectWrite use traditional COM objects?

I'm toying with a little 2D game engine in C# and decided to use Direct2D and DirectWrite for rendering. I know there's the Windows API Code Pack and SlimDX, but I'd really like to dig in and write an ...
2
votes
2answers
287 views

Direct2D window black when not in focus

I have a Direct2D window which paints fine when in focus; however, when focus moves to another window (same application or another), the entire window goes black. I pinned the issue down to the use of ...
2
votes
2answers
1k views

Direct2D fallback to GDI in XP

I'd like to use Direct2D for my .Net application using the Windows Code pack. Since some of my users are using XP, I need to provide a GDI+ fallback. I wonder how people usually do this kind of ...
2
votes
1answer
1k views

Are there any performance tests available re Direct2D?

I'm particularly interested in drawing primitives performance (CAD, GIS, etc.) but any speed comparison with GDI/GDI+ would be very interesting.
1
vote
1answer
119 views

Performance using D3D10/11 and MDI windows

I'm working on an MDI app that might hold some a lot (>40) real-time (30 fps) updating graphs; each graph has to potentially render 3D geometry in it. I've tried using Direct2D for each window using ...
1
vote
1answer
209 views

What are the best practices for multithreading with Direct2D & DXGI (D3D interop)?

Ideally I'd like to have multiple worker threads to be able to render to off-screen render targets and then 'transfer' the rendered content to the on-screen target. With hwnd render targets this does ...
1
vote
1answer
336 views

How do you draw a Direct2D canvas on to a TcxImage Canvas?

I have an Direct2D demo that creates a GridPatternBitmapBrush then draws the grid pattern on a TForm in a paint method. How do you get the Direct2D GridPatternBitmapBrush to appear on a ...
1
vote
1answer
113 views

Color attenuation/tint in Direct2D

Has anyone figured out how to change the color of bitmaps when rendering with Direct2D? With Direct3D it's a simple matter of specifying different vertex colors or, when using the sprite batch, ...
1
vote
1answer
519 views

Win32/Direct2D - how to render infinite scrolling listbox

I'm building a Win32 application with C++ which needs to display a list of relatively simple items from Twitter. Each item in the list would include the author and the tweet text along some icons. It ...
1
vote
1answer
367 views

Can't create Direct2D DXGI Surface

I'm calling this method: http://msdn.microsoft.com/en-us/library/dd371264(VS.85).aspx The call fails with E_NOINTERFACE. The documentation is especially unhelpful as to why this may happen. I've ...
1
vote
3answers
2k views

Direct2D / GDI+ and slow Windows forms drawing - What can be done?

Hey, I'm working a lot with Visual Studio 2008, .NET C# 2.0-3.5 and Windows Forms and I have noticed, like many before me, that GDI+ is extremely slow in drawing Controls. Note that I do not deal ...
1
vote
3answers
184 views

Unresolved external symbol

Guys in this Main article there is a header file and a source file. After copying those two files and adding few headers: #include <Windows.h> #include <d2d1.h> #pragma comment(lib, ...
1
vote
1answer
521 views

Per-pixel per-component alpha blending in GDI

I have a 24-bit bitmaps with R, G, B color channels and a 24-bit bitmap with R, G, B alpha channels. I want to alpha blend the first bitmap to a HDC in GDI or RenderTarget in Direct2D with the alpha ...
1
vote
1answer
542 views

Windows Programming: ID2D1Bitmap Interface - Getting the Bitmap Data

I've been writing my own library of functions to access some of the new Direct2D Windows libraries. In particular, I've been working on the ID2D1Bitmap interface. I wanted to write a function to ...
1
vote
2answers
992 views

How do I clear a Direct2D render target to fully transparent

I'm trying to draw semi-transparent rectangles on an invisible HWND. However, clearing the window with ID2D1HwndRenderTarget::Clear just makes the entire window black, so when I draw rectangles on ...
1
vote
1answer
428 views

Learning Direct2D

I have some experince creating windows controls in GDI and now I'm looking for good resources (APIs, samples & good practices) to start learning about Direct2d.
0
votes
1answer
29 views

C++ Drawing arcs in Direct2D Device

I need to draw an arc in a D2D device, is there a function that does this?(something like DrawLine or DrawEllipse) Otherwise, i've seen that there is the ArcSegment function that returns a ...
0
votes
0answers
13 views

How to work with pixels using Direct2D

Could somebody provide an example of an efficient way to work with pixels using Direct2D? For example, how can I swap all green pixels (RGB = 0x00FF00) with red pixels (RGB = 0xFF0000) on a render ...
0
votes
0answers
45 views

C++ Direct2D device in panel

I'm trying to use a panel as Direct2D device, I created this class using the DemoApp class downloaded from Microsoft(I simply set the m_hwnd of the class to the handle of a panel), this is the code of ...
0
votes
0answers
9 views

Retrieving path segments from ID2D1PathGeometry

I'm currently trying to write a little game engine in C# using SlimDX just for fun. I want my world to be destructable, so I have to be able to modify my map. My map is currently vector based, ...
0
votes
1answer
87 views

C++ Direct2D Matrix transformation mirror

I am currently learning DirectX (SDK of June 2010) and am drawing bitmaps to screen. Now I want to be able to do transformations on these images, and fail to mirror the images along the x- or y- axis. ...
0
votes
2answers
215 views

Rendering part of a bitmap using Direct2D [closed]

I'm in the process of converting a custom CAD software from GDI to Direct2D. I'm having issues when panning the drawing. What I would like to do is to create a bitmap that's 3x as wide as the drawing ...
0
votes
0answers
34 views

How to implement the outline effect on text with WindowsAPICodePack?

I'm still struggling on this issue after our other requirements are finished. I found we can use GeometrySink alike classes to implement the outline effect; but I'm not familiar with c++; see this ...
0
votes
0answers
104 views

Direct2D Direct3D Interop problem [closed]

I have just started learning SlimDX and I have a requirement where I need to use Direct2D and Direct3D in parallel. So, I have decided to use the Direct2D & Direct3D Interop as described in this ...
0
votes
2answers
151 views

Best 2D integration with Direct3D 10?

I have an application that, to this point, is mostly DirectX 10 3D graphics. Now we are wanting to generate some real-time 2D images to display on a portion of the screen. The 2D graphics will be ...
0
votes
1answer
81 views

Can I use direct2d hardware-acceleration in serverside scenarios?

Browsing through direct2d resources it seems hardware-acceleration is not available for server-side scenarios. My requirement is to render images off-screen. While this is easy to achieve using ...
0
votes
1answer
123 views

Do Silverlight or WPF applications use Direct2D or DirectWrite to render fonts and UI?

I found a lot of information that IE9 uses DirectWrite and Direct2D instead of GDI for rendering UI. Is the same true for WPF and Silverlight applications?
0
votes
1answer
127 views

Direct2d command analog to OpenGL's SwapBuffers?

What is Direct2d command analog to OpenGl's SwapBuffers? I am using this in a VCL environment such as Delphi and CPP Builder. Thanks
0
votes
2answers
188 views

Does Direct2D use back-buffer?

Reading http://blogs.msdn.com/b/directx/archive/2009/09/29/comparing-direct2d-and-gdi.aspx: Presentation Model When Windows was first designed, there was insufficient memory to allow ...
0
votes
1answer
352 views

Copying a portion of a 2D texture to another Direct3D11

How do we copy an arbitrary polygonal region of one Direct3D 11 2D texture to another texture? I've tried using ID3D11DeviceContext::CopySubresourceRegion Method but it copies only rectangular ...
0
votes
2answers
176 views

A skinning engine in Windows: draw “dirty” regions only or the whole window at once?

I want to make a skinning engine capable of drawing custom-shaped windows with alpha blending. That is, it'll use layered windows (UpdateLayeredWindow). A typical window will contain among its ...
0
votes
1answer
83 views

Do I need to recreate Direct2D sharable resources?

According to the documentation, even device-dependent resources are sharable among render targets when those render targets meet some conditions. Assume I have two RenderTargets(RT1 & RT2) which ...
0
votes
1answer
281 views

Directx10: MSAA max texture size?

In DirectX 10, how do I find out the maximum texture size for a MSAA texture for a given sample count/quality? I'm trying to render some geometry using Direct2D rendering to a Direct3D MSAA surface ...
0
votes
1answer
511 views

GDI rendering to direct2D ID2D1BitmapRenderTarget is always transparent

I want to port my movie rendering software from DirectDraw to Direct2D. Because of compatibility issues, GDI rendering needs to be done on top of the image. To optimize performance I want to implement ...
0
votes
1answer
118 views

How can I create a random number of D2D shapes (rectangles and ellipses) and refer to them as an array while drawing?

Let me elaborate. I define a D2D Rectangle like so: D2D1_RECT_F rect1 = D2D1::RectF(5, 0, 150, 150); and an ellipse as: D2D1_ELLIPSE ellipse1 = D2D1::Ellipse(D2D1::Point2F(75.f, 75.f), 75.f, ...
0
votes
1answer
248 views

How do I calculate fps in a simple Direct2D app?

Hey guys, and thanks for looking. I have built the simple D2D app from MSDN, available here. Now, I want to draw some primitives and add an fps counter. I have an OnRender() event, where I draw the ...
0
votes
1answer
204 views

How do I solved Linker errors that go “Unresolved external symbol…”

I am trying to download and build the 'WIC Image Viewer usign Direct2D' from here, but when I build my solution, I am slapped with 56 errors that look like: Error 1 error LNK2019: unresolved ...
0
votes
1answer
728 views

Direct2D (C#), how to use transformation matrices?

I'm using Direct2D in C#, and I've seen some examples on MSDN (in C++), that use operator * to multiply matrices (Matrix3x2F). However, in C#, not only is operator* not overloaded, but there's no ...