Direct2D

Direct2D[1] is a 2D vector graphics application programming interface (API) designed by Microsoft and implemented in Windows 10,[2] Windows 8, Windows 7 and Windows Server 2008 R2, and also Windows Vista and Windows Server 2008 (with Platform Update installed).[3]

Direct2D takes advantage of hardware acceleration via the graphics processing unit (GPU) found in compatible graphics cards within personal computer, tablet, smartphone and modern graphical device. It offers high visual quality and fast rendering performance while maintaining full interoperability with classic Win32 graphics APIs such as GDI/GDI+ and modern graphics APIs such as Direct3D.[4]

An updated version of Direct2D was launched with Windows 8.[5] It was also backported to Windows 7 SP1 (but not to Windows Vista) via the Windows 7 platform update.[6][7][8] The original version of Direct2D was tied to DirectX 10, whereas this version of Direct2D integrates with DirectX 11.1.[6] Windows 8 also added interoperability between XAML and Direct2D along with Direct3D components, which can be all mixed in an application.[9] New features were added to Direct2D in Windows 8.1:[10] Geometry realizations,[11] Direct2D effects API,[12][13][14] command list API, multithreading API's, per-device rendering priority, support for JPEG YCbCr images for smaller memory footprint, and support for block compressed formats (DDS files).

The release of Windows 10 brought important updates and new features to Direct2D such as the performance improvement of rendering scalable text without font rasterization, the ability to download the needed font from the cloud on demand without requiring the font installation step, an optimization for faster image loading and image effect rendering, and a more sophisticated way to apply gradient brush through the use of 2D mesh made of gradient patches. This release also introduced a brand-new API extension to support digital ink, which is highly leveraged by the brand-new Microsoft Edge browser as well as the new ink canvas XAML control.

Overview

Direct2D is a native code API based on C++ that can be called by managed code and uses a "lightweight COM" approach[15] just like Direct3D, with minimal amount of abstraction. However, unlike WPF and similarly to GDI/GDI+, Direct2D is an "immediate mode" rendering API with simple BeginDraw/Draw/EndDraw calls; Direct2D has no concept of a "scene" and does not use retained tree structures, and the rendering state is preserved between drawing calls.

Direct2D can minimize CPU usage and utilize hardware rendering on a graphics card with minimum support of Direct3D Feature Level 9 with WDDM 1.1 drivers. Application can choose to use it exclusively with CPU, the so-called software rendering by using it in conjunction with WARP10 in situations when hardware capability is not available, such as when running within a device with minimal GPU support, under terminal service, Windows session 0, or when graphics rendering is performed in a remote server with the graphical result sent back to the client device. Direct2D performance and memory usage scale linearly with primitive counts in both software and hardware.

Direct2D[16][17] supports high-quality rendering with the following key features:

Direct2D allows full interoperability with GDI, GDI+, and permits rendering to and from a Direct3D surface, as well as to and from a GDI/GDI+ device context (HDC). It can be used effectively together with Windows Imaging Component (WIC) for image encoding/decoding, and with DirectWrite for text formatting and font processing. Such interoperability allows developers to gradually replace critical code paths with Direct2D code without the need to overhaul their entire source code. In Windows 10 timeframe, an Open Source project called Win2D was developed by Microsoft to further simplify the usage of Direct2D and DirectWrite in Universal Windows Platform (UWP) application. Win2D is a highly-efficient WinRT wrapper of Direct2D and DirectWrite designed from the ground up to integrate seamlessly with XAML Canvas control while preserving the power of the underlying graphics subsystem.

Implementation

In their 2012 paper on the competing NV path rendering OpenGL extension, Mark Kilgard and Jeff Bolz explain (and criticize) the internals of Direct2D as follows: "Direct2D operates by transforming paths on the CPU and then performing a constrained trapezoidal tessellation of each path. The result is a set of pixel-space trapezoids and additional shaded geometry to compute fractional coverage for the left and right edges of the trapezoids. These trapezoids and shaded geometry are then rasterized by the GPU. The resulting performance is generally better than entirely CPU-based approaches and requires no ancillary storage for multisample or stencil state; Direct2D renders directly into an aliased framebuffer with properly antialiased results. Direct2D’s primary disadvantage is [that] the ultimate performance is determined not by the GPU (doing fairly trivial rasterization) but rather by the CPU performing the transformation and trapezoidal tessellation of each path and Direct3D validation work."[18]

In July 2012, the Windows 8 team posted the following on the blog of Steven Sinofsky: "To improve geometry rendering performance in Windows 8, we focused on reducing the CPU cost associated with tessellation in two ways. First, we optimized our implementation of tessellation when rendering simple geometries like rectangles, lines, rounded rectangles, and ellipses."[19] These common-case optimizations claimed to improve performance in the range of 184% to 438%, depending on the primitive. The post continued: "Second, to improve performance when rendering irregular geometry (e.g. geographical borders on a map), we use a new graphics hardware feature called Target Independent Rasterization, or TIR. TIR enables Direct2D to spend fewer CPU cycles on tessellation, so it can give drawing instructions to the GPU more quickly and efficiently, without sacrificing visual quality. TIR is available in new GPU hardware designed for Windows 8 that supports DirectX 11.1."[19] This was followed by a benchmark using some 15 SVGs, claiming performance improvements in the range of 151% to 523%. The section concluded: "We worked closely with our graphics hardware partners to design TIR. Dramatic improvements were made possible because of that partnership. DirectX 11.1 hardware is already on the market today and we’re working with our partners to make sure more TIR-capable products will be broadly available."[19]

The TIR feature was among those that caused a "war of words" between Nvidia and AMD around December 2012, because Nvidia's Kepler GPU family does not support it, whereas AMD's GCN does.[20] In response to customer demands, an Nvidia support staffer posted that TIR cannot be simply implemented at the driver level, but requires new hardware;[21][22] the Maxwell 2 architecture, introduced in September 2014, is such hardware.[23]

In Windows 8.1, Direct2D can use the Direct3D11 hardware tesselators, but only in conjunction with D2D1_FILL_MODE_ALTERNATE. If another fill mode is used (e.g. D2D1_FILL_MODE_WINDING) then Direct2D falls back to tessellation on the CPU, but still uses TIR for anti-aliasing (if TIR is available). Since hardware tessellation is available in base Direct3D11 (not necessarily 11.1), Microsoft claimed significant performance improvements with Direct2D in Windows 8.1 (vs. Windows 8) on non-TIR hardware.[24]

Uses and performance

Internet Explorer 9 and later versions use Direct2D and DirectWrite for improved performance and visual quality.[25][26][27] Direct2D support was added in the alpha version of Firefox 3.7, roughly doubling its rendering speed.[28] (Firefox 4 also added DirectWrite support, but this was made non-default for some fonts in Firefox 7 due to user complaints about the rendering quality.[29] Google Chrome uses its own 2D library called Skia, which in turn renders through ANGLE on Windows.[30])

Ars Technica's Peter Bright noted in the summer of 2012 that "most desktop applications don't use Direct2D."[31]

Microsoft Office 2013 supports either Direct2D+DirectWrite or GDI+Uniscribe for display rendering and typography.[32]

See also

References

  1. https://msdn.microsoft.com/en-us/library/windows/desktop/dd370990(v=vs.85).aspx
  2. "What's New in Direct2D and DirectWrite for Windows 10 (Channel 9)". Channel 9. Retrieved 2015-12-03.
  3. "Updated Direct2D in March DirectX SDK - Tom's Blog - Site Home - TechNet Blogs". blogs.technet.com. 2009-03-24. Retrieved 2011-12-26.
  4. "Direct2D". MSDN. Retrieved 2011-12-26.
  5. https://msdn.microsoft.com/en-us/library/windows/hardware/dn653328(v=vs.85).aspx#tir
  6. 1 2 "Windows with C++ - Introducing Direct2D 1.1". Msdn.microsoft.com. 2014-05-02. Retrieved 2014-08-09.
  7. "Platform Update for Windows 7 (Windows)". Msdn.microsoft.com. Retrieved 2014-08-09.
  8. Pooya Eimandar (2013). DirectX 11.1 Game Programming. Packt Publishing Ltd. p. 45. ISBN 978-1-84969-481-0.
  9. http://blogs.msdn.com/b/windowsappdev/archive/2012/03/15/combining-xaml-and-directx.aspx
  10. https://msdn.microsoft.com/en-us/library/windows/desktop/hh802478(v=vs.85).aspx
  11. https://msdn.microsoft.com/en-us/library/windows/desktop/dn363632(v=vs.85).aspx
  12. https://msdn.microsoft.com/en-us/library/windows/desktop/hh973240(v=vs.85).aspx
  13. https://msdn.microsoft.com/en-us/library/windows/desktop/hh706316(v=vs.85).aspx
  14. https://msdn.microsoft.com/en-us/library/windows/desktop/hh973241(v=vs.85).aspx
  15. https://stackoverflow.com/questions/38174095/what-exactly-is-lightweight-com
  16. https://msdn.microsoft.com/en-us/library/windows/desktop/ff729481(v=vs.85).aspx
  17. https://msdn.microsoft.com/en-us/library/windows/desktop/dd756766(v=vs.85).aspx
  18. Kilgard, Mark J. (2012). "GPU-accelerated path rendering". ACM Transactions on Graphics. 31 (6): 1. doi:10.1145/2366145.2366191.
  19. 1 2 3 Rob Copeland, with contributions from Sriram Subramanian, Dan McLachlan, Kam VedBrat, Steve Lim, and Jianye Lu, and introduction by Steven Sinofsky Hardware accelerating everything: Windows 8 graphics
  20. "War of Words Between NVIDIA and AMD Over DirectX 11.1 Support Continues". Hardware Canucks. 2012-12-17. Retrieved 2014-08-09.
  21. https://forums.geforce.com/default/topic/511499/geforce-drivers/give-us-dx11-1-driver-support-on-dx11-cards-no-new-hardware-is-required-for-dx11-1/post/3642626/#3642626
  22. http://nvidia.custhelp.com/app/answers/detail/a_id/3196/~/fermi-and-kepler-directx-api-support
  23. http://www.anandtech.com/show/8526/nvidia-geforce-gtx-980-review/4
  24. http://channel9.msdn.com/Events/Build/2013/3-191 19:00 to 20:00 and 55:00 to 56:30
  25. tim, on August 11th, 2010 Follow tim on Twitter (2010-08-11). "Firefox 4 as Psychedelic as IE9 with Direct2D enabled « Tim Anderson's ITWriting". Itwriting.com. Retrieved 2014-08-06.
  26. Shankland, Stephen (2014-03-25). "Firefox 4 beta 4 adds hardware acceleration". CNET. Retrieved 2014-08-06.
  27. Mozilla chucks Roc at Microsoft's new hardness • The Register
  28. Published on 27th November 2009 by Gareth Halfacree (2009-11-27). "Firefox 3.7 gets Direct2D support". bit-tech.net. Retrieved 2014-08-09.
  29. "Graphic bits » Blog Archive » DirectWrite Text Rendering in Firefox 6". Blog.mozilla.org. 2011-08-11. Retrieved 2014-08-09.
  30. "GPU Accelerated Compositing in Chrome - The Chromium Projects". Sites.google.com. Retrieved 2014-08-06.
  31. Bright, Peter (2012-07-24). "Windows 8 GPU acceleration: good news for Metro". Ars Technica. Retrieved 2014-08-09.
  32. "Office Adopts New Windows Display Technology - Murray Sargent: Math in Office - Site Home - MSDN Blogs". Blogs.msdn.com. 2012-07-29. Retrieved 2014-08-09.

External links

This article is issued from Wikipedia - version of the 9/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.