Direct3D

Direct3D
Developer(s) Microsoft
Initial release June 2, 1996 (1996-06-02)
Stable release
12 / July 29, 2015 (2015-07-29)
Development status Active
Operating system Windows
Platform x86, ARM
Type 3D graphics API
License Proprietary
Website msdn.microsoft.com/en-us/library/windows/desktop/hh309466

Direct3D is a graphics application programming interface (API) for Microsoft Windows. Part of DirectX, Direct3D is used to render three-dimensional graphics in applications where performance is important, such as games. Direct3D uses hardware acceleration if it is available on the graphics card, allowing for hardware acceleration of the entire 3D rendering pipeline or even only partial acceleration. Direct3D exposes the advanced graphics capabilities of 3D graphics hardware, including Z-buffering,[1] W-buffering,[2] Stencil buffering , spatial anti-aliasing, alpha blending, colour blending, mipmapping, texture blending,[3][4] clipping, Culling, atmospheric effects, perspective-correct texture mapping, programmable HLSL shaders[5] and effects.[6] Integration with other DirectX technologies enables Direct3D to deliver such features as video mapping, hardware 3D rendering in 2D overlay planes, and even sprites, providing the use of 2D and 3D graphics in interactive media ties.

Direct3D contains many commands for 3D computer graphics rendering; however, since version 8, Direct3D has superseded the DirectDraw framework and also taken responsibility for the rendering of 2D graphics.[7] Microsoft strives to continually update Direct3D to support the latest technology available on 3D graphics cards. Direct3D offers full vertex software emulation but no pixel software emulation for features not available in hardware. For example, if software programmed using Direct3D requires pixel shaders and the video card on the user's computer does not support that feature, Direct3D will not emulate it, although it will compute and render the polygons and textures of the 3D models, albeit at a usually degraded quality and performance compared to the hardware equivalent. The API does include a Reference Rasterizer (or REF device), which emulates a generic graphics card in software, although it is too slow for most real-time 3D applications and is typically only used for debugging. A new real-time software rasterizer, WARP, designed to emulate complete feature set of Direct3D 10.1, is included with Windows 7 and Windows Vista Service Pack 2 with the Platform Update; its performance is said to be on par with lower-end 3D cards on multi-core CPUs.[8]

As part of DirectX, Direct3D is available for Windows 95 and above, and is the base for the vector graphics API on the Xbox and Xbox 360 console systems. The Wine compatibility layer, a free software reimplementation of several Windows APIs, includes an implementation of Direct3D.

Direct3D's main competitor is Khronos' OpenGL and its follow-on Vulkan. Fahrenheit was an attempt by Microsoft and SGI to unify OpenGL and Direct3D in the 1990s, but was eventually cancelled.

Direct3D 2.0 and 3.0

In 1992, Servan Keondjian started a company named RenderMorphics, which developed a 3D graphics API named Reality Lab, which was used in medical imaging and CAD software. Two versions of this API were released. Microsoft bought RenderMorphics in February 1995, bringing Keondjian on board to implement a 3D graphics engine for Windows 95. The first version of Direct3D shipped in DirectX 2.0 (June 2, 1996) and DirectX 3.0 (September 26, 1996).

Direct3D initially implemented both "retained mode" and "immediate mode" 3D APIs. Like other DirectX APIs, such as DirectDraw, both were based on COM. The retained mode was a scene graph API that attained little adoption. Game developers clamored for more direct control of the hardware's activities than the Direct3D retained mode could provide. Only two games that sold a significant volume, Lego Island and Lego Rock Raiders, were based on the Direct3D retained mode, so Microsoft did not update the retained mode after DirectX 3.0.

For DirectX 2.0 and 3.0, the Direct3D immediate mode used an "execute buffer" programming model that Microsoft hoped hardware vendors would support directly. Execute buffers were intended to be allocated in hardware memory and parsed by the hardware to perform the 3D rendering. They were extremely awkward to program, however, hindering adoption of the new API and prompting calls for Microsoft to adopt OpenGL as the official 3D rendering API for games as well as workstation applications. (see OpenGL vs. Direct3D)

Rather than adopt OpenGL as a gaming API, Microsoft chose to continue improving Direct3D, not only to be competitive with OpenGL, but to compete more effectively with proprietary APIs such as 3dfx's Glide.

From the beginning, the immediate mode also supported Talisman's tiled rendering with the BeginScene/EndScene methods of the IDirect3DDevice interface.

Direct3D 4.0

No substantive changes were planned to Direct3D for DirectX 4.0, which was scheduled to ship in late 1996 and then cancelled.[9]

Direct3D 5.0

In December 1996, a team in Redmond took over development of the Direct3D Immediate Mode, while the London-based RenderMorphics team continued work on the Retained Mode. The Redmond team added the DrawPrimitive API that eliminated the need for applications to construct execute buffers, making Direct3D more closely resemble other immediate mode rendering APIs such as Glide and OpenGL. The first beta of DrawPrimitive shipped in February 1997,[10] and the final version shipped with DirectX 5.0 in August 1997.[11]

Besides introducing an easier-to-use immediate mode API, DirectX 5.0 added the SetRenderTarget method that enabled Direct3D devices to write their graphical output to a variety of DirectDraw surfaces.[12]

Direct3D 6.0

DirectX 6.0 (released in August, 1998) introduced numerous features to cover contemporary hardware (such as multitexture[13] and stencil buffers) as well as optimized geometry pipelines for x87, SSE and 3DNow! and optional texture management to simplify programming.[14] Direct3D 6.0 also included support for features that had been licensed by Microsoft from specific hardware vendors for inclusion in the API, in exchange for the time-to-market advantage to the licensing vendor. S3 texture compression support was one such feature, renamed as DXTC for purposes of inclusion in the API. Another was TriTech's proprietary bump mapping technique. Microsoft included these features in DirectX, then added them to the requirements needed for drivers to get a Windows logo to encourage broad adoption of the features in other vendors' hardware.

A minor update to DirectX 6.0 came in the February, 1999 DirectX 6.1 update. Besides adding DirectMusic support for the first time, this release improved support for Intel Pentium III 3D extensions.[15]

A confidential memo sent in 1997[16] shows Microsoft planning to announce full support for Talisman in DirectX 6.0, but the API ended up being cancelled (See the Microsoft Talisman page for details).

Direct3D 7.0

DirectX 7.0 introduced the .dds texture format[17] and support for transform and lighting hardware acceleration (first available on PC hardware with Nvidia's GeForce 256), as well as the ability to allocate vertex buffers in hardware memory. Hardware vertex buffers represent the first substantive improvement over OpenGL in DirectX history. Direct3D 7.0 also augmented DirectX support for multitexturing hardware, and represents the pinnacle of fixed-function multitexture pipeline features: although powerful, it was so complicated to program that a new programming model was needed to expose the shading capabilities of graphics hardware.

Direct3D 8.0

DirectX 8.0, released in November, 2000, introduced programmability in the form of vertex and pixel shaders, enabling developers to write code without worrying about superfluous hardware state.[18] The complexity of the shader programs depended on the complexity of the task, and the display driver compiled those shaders to instructions that could be understood by the hardware. Direct3D 8.0 and its programmable shading capabilities were the first major departure from an OpenGL-style fixed-function architecture, where drawing is controlled by a complicated state machine. Direct3D 8.0 also eliminated DirectDraw as a separate API.[19] Direct3D subsumed all remaining DirectDraw API calls still needed for application development, such as Present(), the function used to display rendering results.

Direct3D was not considered to be user friendly, but as of DirectX version 8.1, many usability problems were resolved. Direct3D 8 contained many powerful 3D graphics features, such as vertex shaders, pixel shaders, fog, bump mapping and texture mapping.

Direct3D 9

Direct3D 9.0,[20] released in December 2002, added a new version of the High Level Shader Language[21][22] support for floating-point texture formats, Multiple Render Targets(MRT),[23] Multiple-Element Textures,[24] texture lookups in the vertex shader and stencil buffer techniques.[25] An extension only available in Windows Vista, called Direct3D 9Ex[26] (previously versioned 9.0L), allows the use of the advantages offered by Windows Vista's Windows Display Driver Model (WDDM) and is used for Windows Aero.[27] Direct3D 9Ex, in conjunction with DirectX 9 class WDDM drivers allows graphics memory to be virtualized and paged out to system memory, allows graphics operations to be interrupted and scheduled and allow DirectX surfaces to be shared across processes.[28] Direct3D 9Ex was previously known as version 1.0 of Windows Graphics Foundation (WGF).

Direct3D 10

Windows Vista includes a major update to the Direct3D API. Originally called WGF 2.0 (Windows Graphics Foundation 2.0), then DirectX 10 and DirectX Next. Direct3D 10[29] features an updated shader model 4.0 and optional interruptibility for shader programs.[28] In this model shaders still consist of fixed stages as on previous versions, but all stages support a nearly unified interface, as well as a unified access paradigm for resources such as textures and shader constants. The language itself has been extended to be more expressive, including integer operations, a greatly increased instruction count, and more C-like language constructs. In addition to the previously available vertex and pixel shader stages, the API includes a geometry shader stage that breaks the old model of one vertex in/one vertex out, to allow geometry to actually be generated from within a shader, allowing for complex geometry to be generated entirely on the graphics hardware.

Windows XP is not supported by DirectX 10.0 and above.

Unlike prior versions of the API, Direct3D 10 no longer uses "capability bits" (or "caps") to indicate which features are supported on a given graphics device. Instead, it defines a minimum standard of hardware capabilities which must be supported for a display system to be "Direct3D 10 compatible". This is a significant departure, with the goal of streamlining application code by removing capability-checking code and special cases based on the presence or absence of specific capabilities.

Because Direct3D 10 hardware was comparatively rare after the initial release of Windows Vista and because of the massive installed base of non-Direct3D 10 compatible graphics cards, the first Direct3D 10-compatible games still provide Direct3D 9 render paths. Examples of such titles are games originally written for Direct3D 9 and ported to Direct3D 10 after their release, such as Company of Heroes, or games originally developed for Direct3D 9 with a Direct3D 10 path retrofitted later in development, such as Hellgate: London or Crysis. The DirectX 10 SDK became available in February 2007.[30]

Direct3D 10.0

Direct3D 10.0 level hardware must support the following features: The ability to process entire primitives in the new geometry-shader stage, the ability to output pipeline-generated vertex data to memory using the stream-output stage, multisampled alpha-to-coverage support, readback of a depth/stencil surface or a multisampled resource once it is no longer bound as a render target, full HLSL integration - all Direct3D 10 shaders are written in HLSL and implemented with the common-shader core, integer and bitwise shader operations, organization of pipeline state into 5 immutable state objects, organization of shader constants into constant buffers, increased number of render targets, textures, and samplers, no shader length limit, new resource types and resource formats,[31] layered runtime/API layers,[32] option to perform per-primitive material swapping and setup using a geometry shader, increased generalization of resource access using a view, removed legacy hardware capability bits(caps).

Direct3D 10.1

Direct3D 10.1[38] was announced by Microsoft shortly after the release of Direct3D 10 as a minor update. The specification was finalized with the release of November 2007 DirectX SDK and the runtime was shipped with the Windows Vista SP1, which is available since mid-March 2008.

Direct3D 10.1 sets a few more image quality standards for graphics vendors, and gives developers more control over image quality.[39][40] Features include finer control over anti-aliasing (both multisampling and supersampling with per sample shading and application control over sample position) and more flexibilities to some of the existing features (cubemap arrays and independent blending modes). Direct3D 10.1 level hardware must support the following features: Multisampling has been enhanced to generalize coverage based transparency and make multisampling work more effectively with multi-pass rendering, better culling behavior - Zero-area faces are automatically culled; this affects wireframe rendering only, independent blend modes per render target, new sample-frequency pixel shader execution with primitive rasterization, increased pipeline stage bandwidth, both colour and depth/stencil MSAA surfaces can now be used with CopyResource as either a source or destination, MultisampleEnable only affects line rasterization (points and triangles are unaffected), and is used to choose a line drawing algorithm. This means that some multisample rasterization from Direct3D 10 are no longer supported, Texture Sampling - sample_c and sample_c_lz instructions are defined to work with both Texture2DArrays and TextureCubeArrays use the Location member (the alpha component) to specify an array index, support for TextureCubeArrays.

Unlike Direct3D 10 which strictly required Direct3D 10-class hardware and driver interfaces, Direct3D 10.1 runtime can run on Direct3D 10.0 hardware using a concept of "feature levels",[42][43][44] but new features are supported exclusively by new hardware which expose feature level 10_1.

The only available Direct3D 10.1 hardware as of June 2008 were the Radeon HD 3000 series and Radeon HD 4000 series from ATI; in 2009, they were joined by Chrome 430/440GT GPUs from S3 Graphics and select lower-end models in GeForce 200 series from Nvidia. In 2011, Intel chipsets started supporting Direct3D 10.1 with the introduction of Intel HD Graphics 2000 (GMA HD).

Direct3D 11

Direct3D 11[45] was released as part of Windows 7. It was presented at Gamefest 2008 on July 22, 2008 and demonstrated at the Nvision 08 technical conference on August 26, 2008.[46][47] The Direct3D 11 Technical Preview has been included in November 2008 release of DirectX SDK.[48] AMD previewed working DirectX11 hardware at Computex on June 3, 2009, running some DirectX 11 SDK samples.[49]

The Direct3D 11 runtime is able to run on Direct3D 9 and 10.x-class hardware and drivers using the concept of "feature levels", expanding on the functionality first introduced in Direct3D 10.1 runtime.[42][50][51] Feature levels allow developers to unify the rendering pipeline under Direct3D 11 API and make use of API improvements such as better resource management and multithreading even on entry-level cards, though advanced features such as new shader models and rendering stages will only be exposed on up-level hardware.[50][52] There are three "10 Level 9" profiles which encapsulate various capabilities of popular DirectX 9.0a cards, and Direct3D 10, 10.1, and 11 each have a separate feature level; each upper level is a strict superset of a lower level.[53]

Tessellation was earlier considered for Direct3D 10, but was later abandoned. GPUs such as Radeon R600 feature a tessellation engine that can be used with Direct3D 9/10/10.1[54][55][56] and OpenGL,[57] but it's not compatible with Direct3D 11 (according to Microsoft). Older graphics hardware such as Radeon 8xxx, GeForce 3/4 had support for another form of tesselation (RT patches, N patches) but those technologies never saw substantial use. As such, their support was dropped from newer hardware.

Microsoft has also hinted at other features such as order independent transparency, which was never exposed by the Direct3D API but supported almost transparently by early Direct3D hardware such as Videologic's PowerVR line of chips.

Direct3D 11.0

Direct3D 11.0 features include: Support for Shader Model 5.0, Dynamic shader linking, addressable resources, additional resource types,[58] subroutines, geometry instancing, coverage as pixel shader input, programmable interpolation of inputs, new texture compression formats (1 new LDR format and 1 new HDR format), texture clamps to limit WDDM preload, require 8-bits of subtexel and sub-mip precision on texture filtering, 16K texture limits, Gather4(support for multi-component textures, support for programmable offsets), DrawIndirect, conservative oDepth, Depth Bias,[59][60] addressable stream output, per-resource mipmap clamping, floating-point viewports, shader conversion instructions, improved multithreading.

Other notable features are the addition of two new texture compression algorithms for more efficient packing of high quality and HDR/alpha textures and an increased texture cache.

First seen in the Release Candidate version, Windows 7 integrates the first released Direct3D 11 support. The Platform Update for Windows Vista includes full-featured Direct3D 11 runtime and DXGI 1.1 update, as well as other related components from Windows 7 like WARP, Direct2D, DirectWrite, and WIC.[64][65]

Direct3D 11.1

Direct3D 11.1[66][67] is an update to the API that ships with Windows 8.[68][69] The Direct3D runtime in Windows 8 features DXGI 1.2[70] and requires new WDDM 1.2[71] device drivers.[72] Preliminary version of the Windows SDK for Windows 8 Developer Preview was released on September 13, 2011.

The new API features shader tracing and HLSL compiler enhancements, support for minimum precision HLSL scalar data types,[73] UAVs (Unordered Access Views) at every pipeline stage, target-independent rasterization (TIR), option to map SRVs of dynamic buffers with NO_OVERWRITE, shader processing of video resources, option to use logical operations in a render target, option to bind a subrange of a constant buffer to a shader and retrieve it, option to create larger constant buffers than a shader can access, option to discard resources and resource views, option to change subresources with new copy options, option to force the sample count to create a rasterizer state, option to clear all or part of a resource view, option to use Direct3D in Session 0 processes, option to specify user clip planes in HLSL on feature level 9 and higher, support for shadow buffer on feature level 9, support for video playback, extended support for shared Texture2D resources, and on-the-fly swapping between Direct3D 10 and 11 contexts and feature levels. Direct3D 11.1 includes new feature level 11_1, which brings minor updates to the shader language, such as larger constant buffers and optional double-precision instructions, as well as improved blending modes and mandatory support for 16-bit colour formats to improve the performance of entry-level GPUs such as Intel HD Graphics.[72][74] WARP has been updated to support feature level 11_1.

The Platform Update for Windows 7 includes a limited set of features from Direct3D 11.1, though components that depend on WDDM 1.2 - such as feature level 11_1 and its related APIs, or quad buffering for stereoscopic rendering - are not present.[75][76]

Direct3D 11.2

Direct3D 11.2[77][78][79] was shipped with Windows 8.1.[80][81] New hardware features require DGXI 1.3[82] with WDDM 1.3[83] drivers and include runtime shader modification and linking, Function linking graph(FLG), inbox HLSL compiler, option to annotate graphics commands.[84] Feature levels 11_0 and 11_1 introduce optional support for tiled resources with shader level of detail clamp (Tier2).[85] The latter feature effectively provides control over the hardware page tables present in many current GPUs.[86] WARP was updated to fully support the new features.[80][87] There is no feature level 11_2 however; the new features are dispersed across existing feature levels. Those that are hardware-dependent can be checked individually via CheckFeatureSupport.[81][88] Some of the "new" features in Direct3D 11.2 actually expose some old hardware features in a more granular way; for example D3D11_FEATURE_D3D9_SIMPLE_INSTANCING_SUPPORT exposes partial support for instancing on feature level 9_1 and 9_2 hardware, otherwise fully supported from feature level 9_3 onward.[89]

Direct3D 11.X is a superset of DirectX 11.2 running on the Xbox One.[90][91] It includes some features, such as draw bundles, that were later announced as part of DirectX 12.[92]

Direct3D 11.3

Direct3D 11.3[93] shipped in July 2015 with Windows 10; it includes minor rendering features from Direct3D 12, while keeping the overall structure of the Direct3D 11.x API.[94][95][96] Direct3D 11.3 introduces Shader Model 5.1,[97] optional Shader Specified Stencil Reference Value, Typed Unordered Access View Loads, Rasterizer Ordered Views (ROVs), optional Standard Swizzle, optional Default Texture Mapping, Conservative Rasterization(out of three tiers),[98] optional Unified Memory Access (UMA) support, and additional Tiled Resources(tier 2)(Volume tiled resources).[99]

Direct3D 11.4

Direct3D 11.4 was first introduced with Windows 10 Threshold 2 update (version 1511) improving external graphics adapters support.[100] An updated version alongside with WDDM 2.1 and DXGI 1.5 [101] have been released on 2 August 2016 with Windows 10 Anniversary Update (version 1607); it includes support for UHDTV HDR10 format (ST 2084) and variable refresh rates support for UWP applications.

Direct3D 12

Direct3D 12[94][96][102][103][104][105] allows a lower level of hardware abstraction than earlier versions, enabling future games to significantly improve multithreaded scaling and decrease CPU utilization. This is achieved by better matching the Direct3D abstraction layer with the underlying hardware, by means of new features such as Indirect Drawing, descriptor tables, concise pipeline state objects, and draw call bundles. Reducing driver overhead is in fact the main attraction of Direct3D 12, similarly to AMD's Mantle;[104] in the words of its lead developer Max McMullen, the main goal of Direct3D 12 is to achieve "console-level efficiency" and improved CPU parallelism.[106][107][108]

Although Nvidia has announced broad support for Direct3D 12, they were also somewhat reserved about the universal appeal of the new API, noting that while game engine developers may be enthusiastic about directly managing GPU resources from their application code, "a lot of [other] folks wouldn't" be happy to have to do that.[109]

Some new hardware features are also in Direct3D 12,[96][110][111] including Shader Model 5.1,[112] Volume Tiled Resources(Tier 2),[113] Shader Specified Stencil Reference Value, Typed UAV Load, Conservative Rasterization(Tier 1), better collision and culling with Conservative Rasterization, Rasterizer Ordered Views (ROVs), Standard Swizzles, Default Texture Mapping, Swap Chains, swizzled resources and compressed resources,[114] additional blend modes,[115] programmable blend and efficient Order-independent transparency(OIT) with pixel ordered UAV.[116]

Pipeline state objects[117] have evolved from Direct3D 11, and the new concise pipeline states mean that the process has been simplified. DirectX 11 offered flexibility in how its states could be altered, to the detriment of performance. Simplifying the process and unifying the pipelines (e.g. pixel shader states) lead to a more streamlined process, significantly reducing the overheads and allowing the graphics card to draw more calls for each frame.

Direct3D 12 also learned from AMD Mantle in command lists and bundles, aiming to ensure the CPU and GPU working together in a more balanced manner.

Within Direct3D 11, the commands are sent from the CPU to the GPU one by one, and the GPU works through these commands sequentially. This means that commands are bottlenecked by the speed at which the CPU could send these commands in a linear fashion. Within DirectX 12 these commands are sent as command lists, containing all the required information within a single package. The GPU is then capable of computing and executing this command in one single process, without having to wait on any additional information from the CPU.

Within these command lists are bundles. Where previously commands were just taken, used, and then forgotten by the GPU, bundles can be reused. This decreases the workload of the GPU and means repeated assets can be used much faster.

While resource binding is fairly convenient in Direct3D 11 for developers at the moment, its inefficiency means several modern hardware capabilities are being drastically underused. When a game engine needed resources in DX11, it had to draw the data from scratch every time, meaning repeat processes and unnecessary uses. In Direct3D 12, descriptor heaps and tables mean the most often used resources can be allocated by developers in tables, which the GPU can quickly and easily access. This can contribute to better performance than Direct3D 11 on equivalent hardware, but it also entails more work for the developer.

Dynamic Heaps are also a feature of Direct3D 12.[118]

Direct3D 12 features explicit multi-adapter support, allowing the explicit control of multiple GPUs configuration systems. Such configurations can be build with graphics adapter of the same hardware vendor as well of different hardware vendor together.[119]

Windows 10 anniversary update (version 1607) has been released on August 2, 2016; the Direct3D 12 runtime has been updated to support HLSL Shader Model 6.0 and HDR , which includes constructs for explicit multithreading and inter-process communication, allowing developers to take advantage of modern massively parallel GPUs.[120] Other features include updated root signatures version 1.1, as well as general support for UHDTV HDR10 format (ST 2084) format and variable refresh rates.

Architecture

Abstract Layer

Direct3D is a Microsoft DirectX API subsystem component. The aim of Direct3D is to abstract the communication between a graphics application and the graphics hardware drivers. It is presented like a thin abstract layer at a level comparable to GDI (see attached diagram). Direct3D contains numerous features that GDI lacks.

Direct3D is an Immediate mode graphics API. It provides a low-level interface to every video card 3D function (transformations, clipping, lighting, materials, textures, depth buffering and so on). It also had a higher level Retained mode component, that has now been officially discontinued.

Direct3D immediate mode presents three main abstractions: devices, resources and Swap Chains (see attached diagram). Devices are responsible for rendering the 3D scene. They provide an interface with different rendering capabilities. For example, the mono device provides white and black rendering, while the RGB device renders in colour. There are four types of devices:

Device

Every device contains at least one swap chain. A swap chain is made up of one or more back buffer surfaces. Rendering occurs in the back buffer.

Moreover, devices contain a collection of resources; specific data used during rendering. Each resource has four attributes:

Direct3D implements two display modes:

Pipeline

Graphics pipeline process

The Microsoft Direct3D 11 API defines a process to convert a group of vertices, textures, buffers, and state into an image on the screen. This process is described as a rendering pipeline with several distinct stages. The different stages of the Direct3D 11 pipeline are:[123]

  1. Input Assembler: Reads in vertex data from an application supplied vertex buffer and feeds them down the pipeline.
  2. Vertex Shader: Performs operations on a single vertex at a time, such as transformations, skinning, or lighting.
  3. Hull Shader: Performs operations on sets of patch control points, and generates additional data known as patch constants.
  4. Tesselation stage: Subdivides geometry to create higher-order representations of the hull.
  5. Domain Shader: Performs operations on vertices output by the tessellation stage, in much the same way as a vertex shader.
  6. Geometry Shader: Processes entire primitives such as triangles, points, or lines. Given a primitive, this stage discards it, or generates one or more new primitives.
  7. Stream Output:[124] Can write out the previous stage's results to memory. This is useful to recirculate data back into the pipeline.
  8. Rasterizer:[125][126] Converts primitives into pixels, feeding these pixels into the pixel shader. The Rasterizer may also perform other tasks such as clipping what is not visible, or interpolating vertex data into per-pixel data.
  9. Pixel Shader: Determines the final pixel colour to be written to the render target and can also calculate a depth value to be written to the depth buffer.
  10. Output Merger:[127] Merges various types of output data (pixel shader values, alpha blending, depth/stencil...) to build the final result.

The pipeline stages illustrated with a round box are fully programmable. The application provides a shader program that describes the exact operations to be completed for that stage. Many stages are optional and can be disabled altogether.

Feature levels

In Direct3D 5 to 9, when new versions of the API introduced support for new hardware capabilities, most of them were optional - each graphics vendor maintained their own set of supported features in addition to the basic required functionality. Support for individual features had to be determined using "capability bits" or "caps", making cross-vendor graphics programming a complex task.

Direct3D 10 introduced a much simplified set of mandatory hardware requirements based on most popular Direct3D 9 capabilities which all supporting graphics cards had to adhere to, with only a few optional capabilities for supported texture formats and operations.

Direct3D 10.1 added a few new mandatory hardware requirements, and to remain compatible with 10.0 hardware and drivers, these features were encapsulated in two sets called "feature levels", with 10.1 level forming a superset of 10.0 level. As Direct3D 11.0 and 11.1 added support for new hardware, new mandatory capabilities were further grouped in upper levels.[42]

Direct3D 11 also introduced "10level9", a subset of the Direct3D 10 API with three feature levels encapsulating various Direct3D 9 cards with WDDM drivers, and Direct3D 11.1 introduced a few optional features for all levels.[128]

This approach allows developers to unify the rendering pipeline and use a single version of the API on both newer and older hardware, taking advantage of performance and usability improvements in the newer runtime.[46]

New feature levels are introduced with updated versions of the API and typically encapsulate:

Each upper level is a strict superset of a lower level, with only a few new or previously optional features that move to the core functionality on an upper level.[53] More advanced features in a major revision of the Direct3D API such as new shader models and rendering stages are only exposed on up-level hardware.[51][52]

Separate capabilities exist to indicate support for specific texture operations and resource formats; these are specified per each texture format using a combination of capability flags.[129][130]

Feature levels use underscore as a delimiter (i.e. "12_1"), while API/runtime versions use dot (i.e. "Direct3D 11.4").

Direct3D 11 levels

In Direct3D 11.4 for Windows 10, there are nine feature levels provided by D3D_FEATURE_LEVEL structure; levels 9_1, 9_2 and 9_3 (collectively known as Direct3D 10 Level 9) re-encapsulate various features of popular Direct3D 9 cards, levels 10_0, 10_1, 11_0 and 11_1 refer to respective legacy versions of the Direct3D API and runtime,[51] while levels 12_0 and 12_1 are inherited from the Direct3D 12 API and runtime.

Feature levels in Direct3D 11.3
Feature level Mandatory hardware features Optional features
9_1 Shader Model 2.0 (vs_2_0/ps_2_0), 2K textures, volume textures, event queries, BC1-3 (aka DXTn), a few other specific capabilities. N/A
9_2 Occlusion queries, floating-point formats (no blending), extended caps, all 9_1 features.
9_3 vs_2_a/ps_2_x with instancing and additional shader caps, 4K textures, multiple render targets (4 MRTs), floating-point blending (limited), all 9_2 features.
10_0 Shader Model 4.0, geometry shader, stream out, alpha-to-coverage, 8K textures, MSAA textures, 2-sided stencil, general render target views, texture arrays, BC4/BC5, full floating-point format support, all 9_3 features. Logical blend operations, DirectCompute (CS 4.0/4.1), extended pixel formats.[128]
10_1 Shader Model 4.1, cubemap arrays, extended MSAA, all 10_0 features.
11_0 Shader Model 5.0/5.1, hull & domain shaders, DirectCompute (CS 5.0/5.1), 16K textures, BC6H/BC7, extended pixel formats, all 10_1 features. UAV only rendering with force sample count, constant buffer offsetting and partial updates, double precision (64-bit) floating point operations, minimum floating point precision (10 or 16 bit), min/max filtering.
11_1 Logical blend operations, target-independent rasterization, UAVs at every pipeline stage with increased slot count, UAV only rendering with force sample count, constant buffer offsetting and partial updates, all 11_0 features. Tiled resources (three tiers), conservative rasterization (three tiers), stencil reference value from Pixel Shader, rasterizer ordered views, typed UAV loads for additional formats
12_0 Tiled Resources Tier 2 (Texture2D), Typed UAV Loads (additional formats).
12_1 Conservative Rasterization Tier 1, Rasterizer Ordered Views.

Direct3D 12 levels

Direct3D 12 for Windows 10 requires graphics hardware conforming to feature levels 11_0 and 11_1 which support virtual memory address translations and requires WDDM 2.0 drivers. There are two new feature levels, 12_0 and 12_1, which include some new features exposed by Direct3D 12 that are optional on levels 11_0 and 11_1.[131] Some previously optional features are realigned as baseline on levels 11_0 and 11_1. Shader Model 6.0 has been introduced with Windows 10 Anniversary Update and requires WDDM 2.1 drivers.

Direct3D 12 feature levels
Level Mandatory features Optional features
11_0 All mandatory 11_0 features from Direct3D 11, Shader Model 5.1, Resource binding Tier 1. Logical blend operations, double precision (64-bit) floating point operations, minimum floating point precision (10 or 16 bit).

Resource binding (three tiers), tiled resources (three tiers), conservative rasterization (three tiers), stencil reference value from Pixel Shader, rasterizer ordered views, typed UAV loads for additional formats.

Shader Model 6.0.

UAVs at every pipeline stage, UAV only rendering with force sample count, constant buffer offsetting and partial updates.
11_1 Logical blend operations, target-independent rasterization, increased UAV slot count.
12_0 Resource Binding Tier 2, Tiled Resources Tier 2 (Texture2D), Typed UAV Loads (additional formats), Shader Model 6.0.
12_1 Conservative Rasterization Tier 1, Rasterizer Ordered Views.

Direct3D 12 introduces a revamped resource binding model which allows explicit control of memory. Abstract "resource view" objects[132] are now represented with resource descriptors, which are allocated using memory heaps and tables.[133] Resource Binding tiers define maximum number of resources that can be addressed using CBV (constant buffer view), SRV (shader resource view) and UAV (unordered access view), as well as texture sampler units. Tier 3 hardware allows fully bindless resources only restricted by the size of the descriptor heap, while Tier 1 and Tier 2 hardware impose some limits on the number of descriptors ("views") that can be used simultaneously.[134][135]

Resource binding tiers
Resource limits Tier 1 Tier 2 Tier 3
Descriptors in CBV/SRV/UAV heap 1M1M>1M
CBVs per shader stage1414full heap
SRVs per shader stage128 full heap
UAVs across all stages8, 64 64full heap
Samplers per shader stage16 full heap
64 slots on feature level 11_1 hardware

Multithreading

WDDM driver model in Windows Vista and higher supports arbitrarily large number of execution contexts (or threads) in hardware or in software. Windows XP only supported multitasked access to Direct3D, where separate applications could execute in different windows and be hardware accelerated, and the OS had limited control about what the GPU could do and the driver could switch execution threads arbitrarily.

The ability to execute the runtime in a multi-threaded mode has been introduced with Direct3D 11 runtime. Each execution context is presented with a resource view of the GPU. Execution contexts are protected from each other, however a rogue or badly written app can take control of the execution in the user-mode driver and could potentially access data from another process within GPU memory by sending modified commands. Though protected from access by another app, a well-written app still needs to protect itself against failures and device loss caused by other applications.

The OS manages the threads all by itself, allowing the hardware to switch from one thread to the other when appropriate, and also handles memory management and paging (to system memory and to disk) via integrated OS-kernel memory management.

Finer-grained context switching, i.e. being able to switch two execution threads at the shader-instruction level instead of the single-command level or even batch of commands, was introduced in WDDM/DXGI 1.2 which shipped with Windows 8.[72] This overcomes a potential scheduling problem when application would have very long execution of a single command/batch of commands and will have to be terminated by the OS watchdog timer.[136]

WDDM 2.0 and DirectX 12 have been reengineered to allow fully multithreaded draw calls. This was achieved by making all resources immutable (i.e. read-only), serializing the rendering states and using draw call bundles. This avoids complex resource management in the kernel-mode driver, making possible multiple reentrant calls to the user-mode driver via concurrent executions contexts supplied by separate rendering threads in the same application.

Other implementations

Direct3D Mobile

Direct3D Mobile is derived from Direct3D but has a smaller memory footprint. Windows CE provides Direct3D Mobile support.[137]

Wine implementation

The Wine project has working implementations of the Direct3D 8, 9 and 10 APIs (they are, as of 20 May 2014, 100%, 78% and 82% complete respectively).[138] Wine's implementation can also be run on Windows under certain conditions.[139] Work on implementing Direct3D 10 began in Wine 1.1.7, using OpenGL via WGL.

D3DX

Main article: D3DX

Direct3D comes with D3DX, a library of tools designed to perform common mathematical calculations on vectors, matrices and colours, calculating look-at and projection matrices, spline interpolations, and several more complicated tasks, such as compiling or assembling shaders used for 3D graphic programming, compressed skeletal animation storage and matrix stacks. There are several functions that provide complex operations over 3D meshes like tangent-space computation, mesh simplification, precomputed radiance transfer, optimizing for vertex cache friendliness and stripification, and generators for 3D text meshes. 2D features include classes for drawing screen-space lines, text and sprite based particle systems. Spatial functions include various intersection routines, conversion from/to barycentric coordinates and bounding box/sphere generators. D3DX is provided as a dynamic link library (DLL). D3DX is deprecated from Windows 8 onward and can't be used in Windows Store apps.[140]

Some features present in previous versions of D3DX were removed in Direct3D 11 and now provided as separate sources:[141]

DXUT

DXUT (also called the sample framework) is a layer built on top of the Direct3D API. The framework is designed to help the programmer spend less time with mundane tasks, such as creating a window, creating a device, processing Windows messages and handling device events. DXUT have been removed with the Windows SDK 8.0 and now distributed as source via CodePlex.[149]

See also

References

  1. "Configuring Depth-Stencil Functionality". Microsoft.
  2. "RenderStateManager.UseWBuffer". Microsoft.
  3. "Texture Blending (Direct3D 9)". Microsoft.
  4. "Geometry Blending (Direct3D 9)". Microsoft.
  5. "HLSL". Microsoft.
  6. "Effects (Direct3D 11)". Microsoft.
  7. "DirectX Software Development Kit, October 2006". Microsoft.
  8. "Windows Advanced Rasterization Platform (WARP) Guide - WARP Architecture and Performance". MSDN.
  9. "What happened to DirectX 4?". msdn.com. 2004-01-22.
  10. "Press Release-Microsoft Meltdown (February 1997)". Microsoft Corporation. 1997-02-18.
  11. "Press Release-Microsoft Meltdown (July 1997)". Microsoft Corporation. 1997-07-22.
  12. Ron Fosner. "Get Fast and Simple 3D Rendering with DrawPrimitive and DirectX 5.0". Microsoft Systems Journal.
  13. "Direct3D 7 Immediate Mode Framework Programming 3: Multitexturing". gamedev.net. 2000-05-29.
  14. "Microsoft Ships Final Release of DirectX 6.0". Microsoft. 1998-08-07.
  15. "Microsoft Ships DirectX 6.1". Microsoft. 3 February 1999.
  16. "Bill Gates April 1997 Talisman Update" (PDF). Microsoft. 1997-05-05.
  17. "DDS (DirectDraw Surface format)". MSDN.
  18. "Microsoft Announces Release of DirectX 8.0". Microsoft. 9 November 2000. Retrieved 7 January 2015.
  19. "DirectX 8 Graphics and Video: A Fresh Start". gamedev.net. 2000-11-30.
  20. "Direct3D 9 Graphics". MSDN. Retrieved 30 September 2014.
  21. "Writing HLSL Shaders in Direct3D 9". MSDN. Retrieved 30 September 2014.
  22. "HLSL in Direct3D 9.0".
  23. "Multiple Render Targets (Direct3D 9)". MSDN. Retrieved 30 September 2014.
  24. "Multiple-element Textures (Direct3D 9)". MSDN. Retrieved 30 September 2014.
  25. "Stencil Buffer Techniques (Direct3D 9)". MSDN. Retrieved 30 September 2014.
  26. "Direct3D 9Ex Improvements". MSDN. Retrieved 30 September 2014.
  27. "Graphics APIs in Windows". MSDN. August 2009.
  28. 1 2 "The role of the Windows Display Driver Model in the DWM". 2006-04-02.
  29. "API Features (Direct3D 10)". MSDN. Retrieved 30 September 2014.
  30. "DirectX Software Development Kit, February 2007". Microsoft.
  31. "Resource Types (Direct3D 10)". MSDN. Retrieved 30 September 2014.
  32. "API Layers (Direct3D 10)". MSDN. Retrieved 30 September 2014.
  33. "CNet News". Retrieved 30 September 2014.
  34. "Common-Shader Core". Microsoft.
  35. "Geometry Shader Features". Microsoft.
  36. "Shader Stages". Microsoft.
  37. "What Direct3D 10 is all about - Additional Improvements". Tom's Hardware. 2006-11-08.
  38. "Direct3D 10.1 Features". MSDN. Retrieved 30 September 2014.
  39. "Microsoft Presents DirectX 10.1 Details at SIGGRAPH". ExtremeTech. 2007-08-07.
  40. "Direct3D 10.1 Features". MSDN.
  41. 1 2 "ID3D11Device::CheckMultisampleQualityLevels method". MSDN. Retrieved 30 September 2014.
  42. 1 2 3 Chuck Walbourn (June 20, 2012). "Direct3D Feature Levels". Games for Windows and the DirectX SDK Blog.
  43. "D3D10_FEATURE_LEVEL1 enumeration". MSDN. Retrieved 2009-11-22.
  44. "Direct3D feature levels". MSDN. Retrieved 30 September 2014.
  45. "Direct3D 11 Features". MSDN. Retrieved 30 September 2014.
  46. 1 2 3 "Gamefest 2008 Presentations". Microsoft.
  47. 1 2 "Nvision 08 Tech Presentations". Nvidia. Retrieved 2011-09-16.
  48. "DirectX Software Development Kit, November 2008". Microsoft. 2008-11-07.
  49. "AMD shows off world's first DirectX 11 GPU". Engadget. 2009-06-03.
  50. 1 2 "GameFest 2008: Introduction to the Direct3D 11 Graphics Pipeline". Microsoft. Slide 56.
  51. 1 2 3 "Direct3D 11 on Downlevel Hardware". MSDN. Retrieved 2012-11-18.
  52. 1 2 "Windows Driver Kit - Supporting Direct3D 11". MSDN. Retrieved 2009-06-13.
  53. 1 2 "Direct3D feature levels". MSDN. Retrieved 2012-07-02.
  54. "Using ATI hardware tessellation in DX9". 2008-07-14.
  55. "AMD DX9 Tessellation SDK".
  56. "Programming for Real-Time Tessellation on GPU" (PDF).
  57. "OpenGL Tessellation Samples".
  58. "New Resource Types". MSDN. Retrieved 30 September 2014.
  59. "Depth Bias". MSDN. Retrieved 30 September 2014.
  60. "D3D11_RASTERIZER_DESC1 structure". MSDN. Retrieved 30 September 2014.
  61. "Shader Model 5". MSDN. Retrieved 30 September 2014.
  62. "Tessellation Overview". Microsoft.
  63. "Tessellation Overview". MSDN. Retrieved 30 September 2014.
  64. "Description of the Platform Update for Windows Server 2008 and the Platform Update for Windows Vista". Support.microsoft.com. 2012-10-02. Retrieved 2013-06-15.
  65. "The Platform Update for Windows Vista - DirectX Developer Blog - Site Home - MSDN Blogs". Blogs.msdn.com. 2009-09-10. Retrieved 2013-06-15.
  66. "Direct3D 11.1 Features". MSDN. Retrieved 30 September 2014.
  67. "D3D11_FEATURE_DATA_D3D11_OPTIONS structure". MSDN. Retrieved 30 September 2014.
  68. "DirectX feature improvements in Windows 8". MSDN. Retrieved 30 September 2014.
  69. "Direct3D 11.1 Features". MSDN. Retrieved 2009-09-13.
  70. "DXGI 1.2 Improvements". MSDN. Retrieved 30 September 2014.
  71. "WDDM 1.2 features". MSDN. Retrieved 30 September 2014.
  72. 1 2 3 "Windows Display Driver Model Enhancements in Windows Developer Preview". MSDN. 2011-09-13.
  73. "Scalar Types". Retrieved 2 October 2014.
  74. "Intel's Haswell IGP to Feature DirectX 11.1, Increased Professional Application Support". AnandTech. 2011-08-05.
  75. "DirectX Graphics - Platform Update for Windows 7". MSDN. 2012-11-14.
  76. "DirectX 11.1 and Windows 7". Games for Windows and the DirectX SDK Blog. November 13, 2012.
  77. "DirectX programming". MSDN. Retrieved 30 September 2014.
  78. "Direct3D 11.2 Features". MSDN. Retrieved 30 September 2014.
  79. "D3D11_FEATURE_DATA_D3D11_OPTIONS1 structure". MSDN. Retrieved 30 September 2014.
  80. 1 2 "Windows 8.1 Feature Guide - DirectX programming". MSDN Library. June 26, 2013.
  81. 1 2 Bennett Sorbo (June 26, 2013). "What's New in Direct3D 11.2". Channel9 - BUILD 2013.
  82. "DXGI 1.3 Improvements". MSDN Library. June 26, 2013.
  83. "What's new for Windows 8.1 Preview display drivers (WDDM 1.3)". MSDN. Retrieved 30 September 2014.
  84. https://msdn.microsoft.com/en-us/library/windows/apps/bg182880.aspx
  85. "D3D11_TILED_RESOURCES_TIER enumeration". MSDN. Retrieved 30 September 2014.
  86. Charles Hollemeersch, Matt Sandy (June 26, 2013). "Massive Virtual Textures for Games: Direct3D Tiled Resources". Channel9 - BUILD 2013.
  87. "Direct3D 11.2 Features". MSDN Library. June 26, 2013.
  88. "MSDN Blogs". MSDN. Retrieved 30 September 2014.
  89. "D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT structure". MSDN. Retrieved 30 September 2014.
  90. "Raising the Bar with Direct3D". Building Apps for Windows. Retrieved 30 September 2014.
  91. "Microsoft officially turns down Mantle". Retrieved 30 September 2014.
  92. Chris Tector's segment of http://channel9.msdn.com/Blogs/DirectX-Developer-Blog/DirectX-Evolving-Microsoft-s-Graphics-Platform (starting approx. 18 minute in.)
  93. https://msdn.microsoft.com/en-us/library/windows/desktop/dn903943(v=vs.85).aspx
  94. 1 2 Ryan Smith. "AnandTech - Microsoft Details Direct3D 11.3 & 12 New Rendering Features". Retrieved 30 September 2014.
  95. Ryan Smith. "AnandTech - The NVIDIA GeForce GTX 980 Review: Maxwell Mark 2". Retrieved 30 September 2014. First and foremost among Maxwell 2’s new features is the inclusion of full Direct3D 11.2/11.3 compatibility.
  96. 1 2 3 "DirectX 11.3 New Features Outline - Tiled Resources - Typed UAV Loads". Retrieved 30 September 2014.
  97. https://msdn.microsoft.com/en-us/library/windows/desktop/dn933277(v=vs.85).aspx
  98. "D3D11_CONSERVATIVE_RASTERIZATION_TIER enumeration". MSDN library. 22 February 2015. Retrieved 22 February 2015.
  99. "Direct3D 11.3 Features". MSDN library. 28 March 2015. Retrieved 28 March 2015.
  100. https://blogs.msdn.microsoft.com/chuckw/2015/11/30/windows-10-sdk-november-2015/
  101. https://msdn.microsoft.com/en-us/library/mt748631(v=vs.85).aspx
  102. https://msdn.microsoft.com/en-us/library/windows/desktop/dn903943(v=vs.85).aspx
  103. "DirectX 12 Low Level API - Analysis of What We Currently Know - Page 2 RedGamingTech". Retrieved 30 September 2014.
  104. 1 2 Ryan Smith. "AnandTech - Microsoft Announces DirectX 12: Low Level Graphics Programming Comes To DirectX". Retrieved 30 September 2014.
  105. "GDC DirectX 12 Presentation (All Slides)". Imgur. Retrieved 30 September 2014.
  106. "Direct3D 12 Overview Part 8: CPU Parallelism".
  107. "Direct3D 12 Overview Part 1: 'Closer To The Metal'". Retrieved 2 October 2014.
  108. first two minutes of https://channel9.msdn.com/Events/Build/2014/3-564
  109. "A closer look at DirectX 12 - The Tech Report - Page 3". Retrieved 30 September 2014.
  110. Ryan Smith. "AnandTech - Microsoft Details Direct3D 11.3 & 12 New Rendering Features". Retrieved 30 September 2014.
  111. http://static.gamespot.com/uploads/original/823/8237367/2484602-pixel+ordered+uav.jpg
  112. https://msdn.microsoft.com/en-us/library/windows/desktop/dn933277(v=vs.85).aspx
  113. https://msdn.microsoft.com/en-us/library/windows/desktop/dn933277(v=vs.85).aspx
  114. "Meet the future of PC graphics: Microsoft reveals faster, console-like DirectX 12". PCWorld. 20 March 2014. Retrieved 30 September 2014.
  115. "DirectX 12 will also add new features for next-gen GPUs". Retrieved 30 September 2014.
  116. Kowaliski, Cyril (March 21, 2014). "DirectX 12 will also add new features for next-gen GPUs". The Tech Report. Retrieved April 1, 2014.
  117. "Author's Blogs".
  118. "Direct3D 12 Overview Part 7: Dynamic Heaps". Retrieved 2 October 2014.
  119. "Multi-Adapter".
  120. https://msdn.microsoft.com/en-us/library/mt733232(v=vs.85).aspx>
  121. "Software Rasterizer for DirectX 9.0 SDK". Microsoft. 2005-08-01.
  122. "Direct3D Resources - Memory pool".
  123. "Graphics Pipeline". MSDN.
  124. "Stream-Output Stage". Microsoft.
  125. "RenderStates". Retrieved 2 October 2014.
  126. "Rasterizer Stage". Microsoft.
  127. "Output-Merger Stage". Microsoft.
  128. 1 2 https://msdn.microsoft.com/en-us/library/windows/desktop/hh404562#check_support_of_new_direct3d_11.1_features_and_formats
  129. "D3D11_FORMAT_SUPPORT enumeration". MSDN. Retrieved 2015-06-16.
  130. "D3D11_FORMAT_SUPPORT2 enumeration". MSDN. Retrieved 2015-06-16.
  131. https://msdn.microsoft.com/en-us/library/dn899127.aspx
  132. https://msdn.microsoft.com/en-us/library/windows/desktop/ff476900(v=vs.85).aspx
  133. Wolfgang Engel. Introduction to Resource Binding in Microsoft DirectX 12
  134. GVCS005 - Microsoft Direct3D 12: New API Details and Intel Optimizations Archived April 4, 2015, at the Wayback Machine.
  135. Build 2015: Advanced DirectX12 Graphics and Performance
  136. http://www.microsoft.com/whdc/device/display/wddm_timeout.mspx
  137. Direct3D Mobile, Microsoft, 6 January 2010.
  138. "Status of Windows APIs implementation". Retrieved 30 September 2014.
  139. "WineD3DOnWindows - The Official Wine Wiki". Wiki.winehq.org. 2013-06-02. Retrieved 2013-06-15.
  140. "D3DX 11 Reference". MSDN. Retrieved 30 September 2014.
  141. "Living without D3DX". MSDN.
  142. "Effect-Compiler Tool". Microsoft.
  143. "Spherical Harmonics Math". msdn.com. Retrieved 23 November 2014.
  144. "Effects 11". CodePlex. Retrieved 30 September 2014.
  145. "DirectXMesh geometry processing library". CodePlex. Retrieved 30 September 2014.
  146. "DirectXTex texture processing library". CodePlex. Retrieved 30 September 2014.
  147. "DirectX Tool Kit". CodePlex. Retrieved 30 September 2014.
  148. "UVAtrlas". CodePlex. Retrieved 23 November 2014.
  149. "DXUT for Win32 Desktop Update". MSDN.
This article is issued from Wikipedia - version of the 11/29/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.