DirectX for Windows Vista 

DirectX for Windows Vista

Welcome to DirectX graphics for Windows Vista. DirectX provides a base level of support for hardware acceleration of graphics rendering, blending and compositing for applications and the Windows Vista desktop architecture. This documentation specifically refers to the Windows Vista extensions for DirectX graphics. To develop the power of DirectX for Windows Vista, you must install the Windows Vista SDK as well as the DirectX SDK.

Applications using DirectX for Windows Vista must be using hardware that implements the Windows Vista WDDM (Windows Device Driver Model). Currently this includes the Nvidia NV3x and ATI R300/400 class of hardware. Drivers that do not implement the WDDM, will not be able to instantiate Windows Vista DirectX graphics interfaces.

Discover the new DirectX graphics features in Windows Vista in one of these sections:

  • Device Behavior Changes
  • Disabling Multithreaded Software Vertex Processing
  • One Bit Surfaces
  • Reading Depth/Stencil Buffers
  • Sharing Resources
  • sRGB Conversion Before Blending
  • StretchRect Improvements
  • Texture Creation in System Memory

Device Behavior Changes

Devices are now only lost under two circumstances; when the hardware is reset because it is hanging, and when the device driver is stopped. When hardware hangs, the device can be reset by calling IDirect3DDevice9Ex::ResetEx. If hardware hangs, texture memory is lost.

After a driver is stopped, the IDirect9Ex object must be recreated to resume rendering.

When the presentation area is obscured by another window in windowed mode, or when a fullscreen application is minimized, IDirect3DDevice9Ex::PresentEx will return S_D3DPRESENTATIONOCCLUDED. Full screen applications can resume rendering when they receive a WM_ACTIVATEAPP callback message.

In previous versions of DirectX, when an application experienced a mode change, the only way to recover was to reset the device and re-create all video memory resources and swap chains. Now with DirectX for Windows Vista, calling Reset after a mode change does not cause texture memory surfaces, textures and state information to be lost and these resources do not need to be recreated.

Disabling Multithreaded Software Vertex Processing

A new caps bit (D3DCREATE_DISABLE_PSGP_THREADING) has been added that will disable multithreading for software vertex processing (swvp). Use this macro:

#define D3DCREATE_DISABLE_PSGP_THREADING

to generate a behavior flag for IDirect3D9::Createdevice.

One Bit Surfaces

There is a new one bit surface format type which can be especially useful for processing text glyphs. The new format is called D3DFMT_A1. A one-bit surface is designed to be either used as a per-pixel texture, or the render target output generated by ComposeRects or ColorFill. There are no separate caps for the surface width and height; an implementation must support a single size surface that is 2K texels x 8K texels.

A one-bit surface has one bit per texel; therefore, a one would mean that all components (r,g,b,a) of a pixel are 1, and zero would mean that all components are equal to 0. You may use one-bit surfaces with the following APIs: ColorFill, UpdateSurface and UpdateTexture.

When a one-bit surface is read, the runtime can perform either point sample or convolution filtering. The convolution filter is adjustable (see IDirect3DDevice9Ex::SetConvolutionMonoKernel).

There are some restrictions for one-bit surfaces:

  • Mip-mapping is not supported
  • sRGB data can not be read or written to a one-bit surface.
  • A one-bit surface cannot be used as a vertex texture or for multisampling.

Reading Depth/Stencil Buffers

Use IDirect3DDevice9::UpdateSurface to read or write depth/stencil data from surfaces obtained from IDirect3DDevice9::CreateDepthStencilSurface or IDirect3DDevice9::GetDepthStencilSurface.

First, create a lockable, depth only or stencil only surface using IDirect3DDevice9::CreateOffscreenPlainSurface. Use one of the following formats:

  • D3DFMT_D16_LOCKABLE
  • D3DFMT_D32F_LOCKABLE
  • D3DFMT_D32_LOCKABLE
  • D3DFMT_S8_LOCKABLE

Second, transfer data between the depth/stencil buffer and the newly-created lockable depth or stencil surface. The transfer is performed using IDirect3DDevice9::UpdateSurface.

UpdateSurface will fail when both surfaces are a LOCKABLE format or both are non-lockable.

Transferring non-existent data will result in an error (for example, transferring from a non-lockable depth-only surface to a D3DFMT_S8_LOCKABLE surface).

The rest of the restrictions for IDirect3DDevice9::UpdateSurface still apply.

Sharing Resources

Direct3D resources can now be shared between devices or processes. This applies to any Direct3D resource including textures, vertex buffers, index buffers, or surfaces (such as render targets, depth stencil buffers or off-screen plain surfaces). To be shared, you need to designate a resource for sharing at the time of creation, and locate the resource in the default pool (D3DPOOL_DEFAULT). Once a resource is created for sharing, it can be shared across devices within a process, or shared across processes.

To enable shared resources, the resource creation APIs have an additional handle parameter. This is a HANDLE that points to the shared resource. In previous revisions of DirectX, this argument has been part of the API signature, but has been unused and must be set to NULL. Starting with Windows Vista, use pSharedHandle in the following ways:

  • Set the pointer (pSharedHandle) to NULL to not share a resource. This is just like the behavior of DirectX prior to Windows Vista.
  • To create a shared resource, call any resource creation API (see below) with an uninitialized handle (the pointer itself is not NULL (pSharedHandle != NULL), but the pointer points to a NULL value (*pSharedHandle == NULL)). The API will generate a shared resource and return a valid handle.
  • To access a shared resource, simply use the shared resource handle.

Resource creation APIs include - CreateTexture, CreateVolumeTexture, CreateCubeTexture, CreateRenderTarget, CreateVertexBuffer, CreateIndexBuffer, CreateDepthStencilSurface, and CreateOffscreenPlainSurface.

There are some restrictions for using shared resources. These include:

  • Lockable resources (textures with D3DUSAGE_DYNAMIC, vertex buffers and index buffers, for instance) can experience poor performance when shared. Lockable rendertargets will fail to be shared on some hardware.
  • References to a cross-process shared resource must have the same dimensions as the original resource. When passing a handle across process, include the dimension information so that the reference can be created identically.
  • Shared cross-process surfaces provide no synchronization mechanism. Read/write changes to a shared surface may not reflect a referencing process's view of the surface when expected. To provide synchronization, use event queries or lock the texture.
  • Only the process that initially creates a shared resource can lock it (any process that opens a reference to that shared resource cannot lock it).
  • If a shared resource is locked, there is no validation for other processes to know if the resource is available.

sRGB Conversion Before Blending

You can now check to see if the device can convert pipeline data to sRGB before frame-buffer blending. This implies that the device converts the render-target values from sRGB. To see if conversion is supported by the hardware, check for this cap:

D3DPMISCCAPS_POSTBLENDSRGBCONVERT

This cap identifies hardware that supports conversion to sRGB before blending. This capability is important for the high quality rendering from fp16 frame buffers in the desktop window manager (DWM).

StretchRect Improvements

In previous versions of DirectX, StretchRect has many restrictions to accommodate different drivers (see IDirect3DDevice9::StretchRect). Windows Vista is built on the Windows Device Driver Model (WDDM). This new driver model is much more robust, and allows drivers to handle special cases in the hardware.

In general, the only remaining restriction is that the render target must have been created with render-target usage (D3DUSAGE_RENDERTARGET). This restriction is lifted if you are doing a simple copy (where the source and dest are the same format, same size and there are no sub-rectangles).

Texture Creation in System Memory

Applications that need more flexibility over the use, allocation and deletion of the system memory can now create textures from a system memory pointer. For example, an application could create a Direct3D texture from a GDI system-memory bitmap pointer.

You need to do two things to create such a texture:

  • Allocate enough system memory to hold the texture surface. The minimum number of bytes is width x height x bytes per pixel.
  • Pass the handle to the system memory pointer (you will need to cast it correctly) to IDirect3DDevice9::CreateTexture.

Here is the function prototype for IDirect3DDevice9::CreateTexture:

STDMETHOD(CreateTexture)(THIS_ UINT Width, UINT Height, UINT Levels, 
    DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DTexture9** ppTexture, 
    HANDLE* pSharedHandle)

A system-memory texture has the following restrictions:

  • The texture pitch must equal texture width times the number of bytes per pixel.
  • When using compressed formats (DXT formats), the application is responsible for allocating the correct size.
  • Only textures with a single mipmap level are supported.
  • The value passed to CreateTexture for the Pool argument must be D3DPOOL_SYSTEMMEM.
  • This API wraps the supplied memory in a texture. Do not deallocate this memory until you are done with it.