본문 바로가기
Direct2D

Direct2D API Overview

by leo21c 2014. 6. 12.
SMALL

 <참조> 
 http://msdn.microsoft.com/en-us/library/windows/desktop/dd317121(v=vs.85).aspx#direct2d_header_files


Direct2D API Overview

Direct2D provides an API, similar to Direct3D, for use with C or C++. The API exposes a variety of drawing-related functionality:

  • Render targets for display and off-screen rendering using Direct2D, Direct3D, or GDI.
  • Objects for managing drawing state such as coordinate space transforms and antialiasing modes.
  • Representations for geometric data, and functions for geometry processing.
  • Rendering functionality for bitmaps, geometries, and text.
  • Provisions for using graphical content created using GDI or Direct3D.

This topic provides an overview of the objects that make up the Direct2D API. It contains the following sections:

Direct2D Header Files

The Direct2D API is defined by the following header files.

Header fileDescription
d2d1.hDefines C and C++ versions of the primary Direct2D API.
d2d1helper.hDefines C++ helper functions, classes, and structures.
d2dbasetypes.hDefines drawing primitives for Direct2D, such as points and rectangles. This header is included with d2d1.h.
d2derr.hDefines the error codes for Direct2D. This header is included with d2d1.h.
d2d1_1.hDefines C and C++ versions of the primary Direct2D API for Windows 8 and later.
d2d1_1helper.hDefines C++ helper functions, classes, and structures for Windows 8 and later.
d2d1effects.hDefines C and C++ versions of the image effects part of the Direct2D API for Windows 8 and later.
d2d1effecthelpers.hDefines C++ helper functions, classes, and structures of the image effects part of the Direct2D API for Windows 8 and later.

 

To use Direct2D, your application should include the d2d1.h header file.

To compile a Direct2D application, add d2d1.lib to the list of libraries. You can find d2d1.h and d2d1.lib in Windows Software Development Kit (SDK) for Windows 7.

The following sections describe some of the common interfaces provided by the Direct2D API.

Direct2D Interfaces

At the root of the Direct2D API are the ID2D1Factory and ID2D1Resource interfaces. An ID2D1Factory object createsID2D1Resource objects and serves as the starting point for using Direct2D. All other Direct2D objects inherit from theID2D1Resource interface. There are two types of Direct2D resources: device-independent resources and device-dependent resources.

  • Device-independent resources are not associated with a particular rendering device and can persist for the life of an application.
  • Device-dependent resources are associated with a particular rendering device and cease to function if that device is removed.

(For more information about resources and resource sharing, see the Resources Overview.)

The ID2D1Factory Interface

The ID2D1Factory interface is the starting point for using Direct2D. You use an ID2D1Factory to instantiate Direct2D resources. To create an ID2D1Factory, you use one of the CreateFactory methods.

A factory defines a set of CreateResource methods that can produce the following drawing resources:

  • Render targets are objects that render drawing commands.
  • Drawing state blocks are objects that store drawing state information, such as the current transformation and antialiasing mode.
  • Geometries are objects that represent simple and potentially complex shapes.

One of the most useful objects a factory can create is the ID2D1RenderTarget, described in the following section.

Render Targets

A render target is a resource that inherits from the ID2D1RenderTarget interface. A render target creates resources for drawing and performs drawing operations. There are several kinds of render targets that can be used to render graphics in the following ways:

  • ID2D1HwndRenderTarget objects render content to a window.
  • ID2D1DCRenderTarget objects render to a GDI device context.
  • Bitmap render target objects render content to an off-screen bitmap.
  • DXGI render target objects render to a DXGI surface for use with Direct3D.

Because a render target is associated with a particular rendering device, it is a device-dependent resource and ceases to function if the device is removed.

Render Target Features

You can specify whether a render target should use hardware acceleration and whether remote display should be rendered by the local or remote computer. Render targets can be set up for aliased or antialiased rendering. For rendering scenes with a large number of primitives, a developer can also render 2-D graphics in aliased mode and use D3D multisample antialiasing to achieve greater scalability.

Render targets can also group drawing operations into layers that are represented by the ID2D1Layer interface. Layers are useful for collecting drawing operations to be composited together when rendering a frame. For some scenarios, this can be a useful alternative to rendering to a bitmap render target, and then reusing the bitmap contents, as allocation costs for layering are lower than for an ID2D1BitmapRenderTarget.

Render targets can create new render targets that are compatible with themselves, which is useful for intermediate off-screen rendering while retaining the various render-target properties that were set on the original.

It is also possible to render using GDI on a Direct2D render target by calling QueryInterface on a render target forID2D1GdiInteropRenderTarget, which has GetDC and ReleaseDC methods on it that can be used to retrieve a GDI device context. Rendering via GDI is possible only if the render target was created with theD2D1_RENDER_TARGET_USAGE_GDI_COMPATIBLE flag set. This is useful for applications that primarily render with Direct2D but have an extensibility model or other legacy content that requires the ability to render with GDI. For more information, see the Direct2D and GDI Interoperability Overview.

Render Target Resources

Like a factory, a render target can create drawing resources. Any resources created by a render target are device-dependent resources (just like the render target). A render target can create the following types of resources:

  • Bitmaps
  • Brushes
  • Layers
  • Meshes

Drawing Commands

To render content, you use the render target drawing methods. Before you begin drawing, you call theID2D1RenderTarget::BeginDraw method. After you finished drawing, you call the ID2D1RenderTarget::EndDraw method. In between these calls, you use Draw and Fill methods to render drawing resources. Most Draw and Fill methods take a shape (either a primitive or a geometry) and a brush for filling or outlining the shape.

Render targets also provide methods for clipping, applying opacity masks, and transforming the coordinate space.

Direct2D uses a left-handed coordinate system: positive x-axis values proceed to the right and positive y-axis values proceed downward.

Error Handling

Render target drawing commands do not indicate whether the requested operation was successful. To find out whether there were drawing errors, call the render target Flush method or EndDraw method to obtain an HRESULT.

Drawing Resources

The following sections describe some of the resources that can be created by the render target and factory interfaces.

Brushes

A brush, represented by the ID2D1Brush interface, is a device-dependent resource, created by a render target, that paints an area with its output. Different brushes have different types of output. Some brushes paint an area with a solid color, others with a gradient or an image. Direct2D provides four types of brushes:

To create a brush, you use one of the ID2D1RenderTarget::Create<Type>Brush methods, such asCreateRadialGradientBrush. Brushes can be used with a render target Draw and Fill methods, either to paint a shape stroke or outline, or as an opacity mask.

For more information about brushes, see the Brushes Overview.

Geometries

In addition to basic drawing primitives such as points, rectangles, and ellipses, Direct2D provides the ID2D1Geometryinterface for describing simple and complex shapes. Interfaces that inherit from ID2D1Geometry define different types of shapes, such as ID2D1RectangleGeometry for representing rectangles, ID2D1RoundedRectangleGeometry for representing rounded rectangles, and ID2D1EllipseGeometry for representing ellipses.

More complex shapes can be created by using the ID2D1GeometrySink interface to specify a series of figures composed of lines, curves, and arcs. The ID2D1GeometrySink is passed to the Open method of an ID2D1PathGeometry to generate a complex geometry. ID2D1SimplifiedGeometrySink can also be used with the DirectWrite API to extract path outlines of formatted text for artistic rendering.

The geometry interfaces provide methods for manipulating shapes by widening or simplifying existing geometries, or by generating the intersection or union of multiple geometries. They also provide methods for determining whether geometries are intersecting or overlapping, retrieving bounds information, computing the area or length of a geometry, and interpolating locations along a geometry. Direct2D also provides the ability to create a mesh of triangles that is tessellated from a geometry.

To create a geometry, you use one of the ID2D1Factory::Create<Type>Geometry methods, such asCreatePathGeometry. A geometry is a device-independent resource.

To render a geometry, you use the DrawGeometry and FillGeometry methods of a render target.

For more information about geometries, see the Geometries Overview.

Bitmaps

Direct2D does not provide methods for loading or storing bitmaps; rather, it enables you to create bitmaps using theWindows Imaging Component (WIC). Bitmap resources can be loaded using WIC and then used to create anID2D1Bitmap through the ID2D1RenderTarget::CreateBitmapFromWicBitmap method.

Bitmaps can also be created from in-memory data that was set up through other means. After a bitmap has been created, it can be drawn by the render target DrawBitmap method or with a bitmap brush.

Because creating bitmap resources on hardware render targets is often an expensive operation, Direct2D can update the contents of a bitmap (or portion of the bitmap) by using the CopyFromBitmapCopyFromRenderTarget, andCopyFromMemory methods. Using these methods can potentially save the costs associated with additional GPU texture allocations.

Drawing Text

Direct2D was designed to work with the text operations of the new text API, DirectWrite. To make using the DirectWrite API simpler, render targets provide three methods for rendering DirectWrite text resources: DrawTextDrawTextLayout, and DrawGlyphRun. Because Direct2D uses the GPU for the ClearType text rendering process, Direct2D provides lower CPU usage than GDI for text operations and better scalability as more GPU processing power is available.

The ID2D1RenderTarget::DrawText is designed for the simplest scenarios involving rendering a string of Unicode text with minimal formatting. More complex layout and typographic flexibility is provided through theID2D1RenderTarget::DrawTextLayout method, which uses an IDWriteTextLayout object to specify the content and formatting to be rendered. IDWriteTextLayout enables you to specify individual formatting for substrings of text and other advanced typography options.

For scenarios where precise control of glyph-level layout is required, the ID2D1RenderTarget::DrawGlyphRun method can be used in conjunction with the measurement facilities provided by DirectWrite.

To use the DirectWrite API, include the dwrite.h header. Like Direct2D, DirectWrite uses a factory, IDWriteFactory to create text objects. Use the DWriteCreateFactory function to create a factory, and then use its Create methods to create DirectWrite resources (such as IDWriteTextFormat).

For more information about DirectWrite, see the Introducing DirectWrite topic.

Direct2D Primitives

Direct2D defines a set of primitives that are similar to those provided by other drawing APIs. It provides a color structure, a matrix structure for performing transformations, and floating-point and integer versions of points, rectangles, ellipses, and size structures. Usually, you use the floating-point versions of these structures.

You do not use a factory or a render target to instantiate Direct2D primitives. You can create them directly, or use the helper methods defined in d2d1helper.h to create them.


LIST