DDS Driver Download For Windows



  1. DDS Driver Download For Windows
  2. Dds Driver Download For Windows 8.1

Requirement: -Windows Vista SP2 up to Windows 10 2009 (20h2) (19042.xxx October 2020) (anything higher is at your own risk) -NVIDIA, AMD, Intel GPUs -Also support basic Realtek audio driver cleanup. Download DDS Converter for Windows to convert DDS images to JPG/JPEG, PNG, BMP and TIF/TIFF images. Chasys Draw IES is another free DDS file editor for Windows. It is an image processing suite which comes with an image viewer, editor, and converter. Its image editing application is called Chasys Draw IES Artist which you can use to edit DDS image. Besides DDS, it can edit images in popular formats like JPG, PNG, GIF, BMP, WebP, etc.

Download Brother Printer / Scanner drivers, firmware, bios, tools, utilities. Brother MFC-J6999CDW Printer Driver 3.0.0.0 for Windows 10 Creators Update 64-bit 180. Popular Hardware drivers Downloads. 01 Microsoft® ODBC Driver 13.1 for SQL Server® - Windows, Linux, & macOS. The Microsoft ODBC Driver for SQL Server provides native connectivity from Windows, Linux, & macOS to Microsoft SQL Server and Microsoft Azure SQL Database.

-->

Direct3D implements the DDS file format for storing uncompressed or compressed (DXTn) textures. The file format implements several slightly different types designed for storing different types of data, and supports single layer textures, textures with mipmaps, cube maps, volume maps and texture arrays (in Direct3D 10/11). This section describes the layout of a DDS file.

For help creating a texture in Direct3D 11, see How to: Create a Texture. For help in Direct3D 9, see Texture Support in D3DX (Direct3D 9).

DDS File Layout

A DDS file is a binary file that contains the following information:

  • A DWORD (magic number) containing the four character code value 'DDS ' (0x20534444).

  • A description of the data in the file.

    The data is described with a header description using DDS_HEADER; the pixel format is defined using DDS_PIXELFORMAT. Note that the DDS_HEADER and DDS_PIXELFORMAT structures replace the deprecated DDSURFACEDESC2, DDSCAPS2 and DDPIXELFORMAT DirectDraw 7 structures. DDS_HEADER is the binary equivalent of DDSURFACEDESC2 and DDSCAPS2. DDS_PIXELFORMAT is the binary equivalent of DDPIXELFORMAT.

    If the DDS_PIXELFORMAT dwFlags is set to DDPF_FOURCC and dwFourCC is set to 'DX10' an additional DDS_HEADER_DXT10 structure will be present to accommodate texture arrays or DXGI formats that cannot be expressed as an RGB pixel format such as floating point formats, sRGB formats etc. When the DDS_HEADER_DXT10 structure is present the entire data description will looks like this.

  • A pointer to an array of bytes that contains the main surface data.

  • A pointer to an array of bytes that contains the remaining surfaces such as; mipmap levels, faces in a cube map, depths in a volume texture. Follow these links for more information about the DDS file layout for a: texture, a cube map, or a volume texture.

For broad hardware support, we recommend that you use the DXGI_FORMAT_R8G8B8A8_UNORM, DXGI_FORMAT_R8G8B8A8_UNORM_SRGB, DXGI_FORMAT_R8G8B8A8_SNORM, DXGI_FORMAT_B8G8R8A8_UNORM, DXGI_FORMAT_R16G16_SNORM, DXGI_FORMAT_R8G8_SNORM, DXGI_FORMAT_R8_UNORM, DXGI_FORMAT_BC1_UNORM, DXGI_FORMAT_BC1_UNORM_SRGB, DXGI_FORMAT_BC2_UNORM, DXGI_FORMAT_BC2_UNORM_SRGB, DXGI_FORMAT_BC3_UNORM, or DXGI_FORMAT_BC3_UNORM_SRGB format.

For more info about compressed texture formats, see Texture Block Compression in Direct3D 11 and Block Compression (Direct3D 10).

The D3DX library (for example, D3DX11.lib) and other similar libraries unreliably or inconsistently provide the pitch value in the dwPitchOrLinearSize member of the DDS_HEADER structure. Therefore, when you read and write to DDS files, we recommend that you compute the pitch in one of the following ways for the indicated formats:

  • For block-compressed formats, compute the pitch as:

    max( 1, ((width+3)/4) ) * block-size

    The block-size is 8 bytes for DXT1, BC1, and BC4 formats, and 16 bytes for other block-compressed formats.

  • For R8G8_B8G8, G8R8_G8B8, legacy UYVY-packed, and legacy YUY2-packed formats, compute the pitch as:

    ((width+1) >> 1) * 4

  • For other formats, compute the pitch as:

    ( width * bits-per-pixel + 7 ) / 8

    You divide by 8 for byte alignment.

Driver

Note

The pitch value that you calculate does not always equal the pitch that the runtime supplies, which is DWORD-aligned in some situations and byte-aligned in other situations. Therefore, we recommend that you copy a scan line at a time rather than try to copy the whole image in one copy.

DDS Variants

There are many tools that create and consume DDS files, but they can vary in the details of what they require in the header. Writers should populate the headers as fully as possible, and readers should check the minimal values for maximum compatibility. To validate a DDS file, a reader should ensure the file is at least 128 bytes long to accommodate the magic value and basic header, the magic value is 0x20534444 ('DDS '), the DDS_HEADER size is 124, and the DDS_PIXELFORMAT in the header size is 32. If the DDS_PIXELFORMAT dwFlags is set to DDPF_FOURCC and a dwFourCC is set to 'DX10', then the total file size needs to be at least 148 bytes.

There are some common variants in use where the pixel format is set to a DDPF_FOURCC code where dwFourCC is set to a D3DFORMAT or DXGI_FORMAT enumeration value. There is no way to tell if an enumeration value is a D3DFORMAT or a DXGI_FORMAT, so it is highly recommended that the 'DX10' extension and DDS_HEADER_DXT10 header is used instead to store the dxgiFormat when the basic DDS_PIXELFORMAT cannot express the format.

The standard DDS_PIXELFORMAT should be preferred for maximum compatibility to store RGB uncompressed data and DXT1-5 data as not all DDS tools support the DX10 extension.

Using Texture Arrays in Direct3D 10/11

The new DDS structures (DDS_HEADER and DDS_HEADER_DXT10) in Direct3D 10/11 extend the DDS file format to support an array of textures, which is a new resource type in Direct3D 10/11. Here is some sample code that shows how to access the different mipmap levels in an array of textures, using the new headers.

Common DDS File Resource Formats and Associated Header Content

Resource FormatdwFlagsdwRGBBitCountdwRBitMaskdwGBitMaskdwBBitMaskdwABitMask
DXGI_FORMAT_R8G8B8A8_UNORM
D3DFMT_A8B8G8R8
DDS_RGBA320xff0xff000xff00000xff000000
DXGI_FORMAT_R16G16_UNORM
D3DFMT_G16R16
DDS_RGBA320xffff0xffff0000
**
DXGI_FORMAT_R10G10B10A2_UNORM
D3DFMT_A2B10G10R10
DDS_RGBA320x3ff0xffc000x3ff00000
DXGI_FORMAT_R16G16_UNORM
D3DFMT_G16R16
DDS_RGB320xffff0xffff0000
DXGI_FORMAT_B5G5R5A1_UNORM
D3DFMT_A1R5G5B5
DDS_RGBA160x7c000x3e00x1f0x8000
DXGI_FORMAT_B5G6R5_UNORM
D3FMT_R5G6B5
DDS_RGB160xf8000x7e00x1f
DXGI_A8_UNORM
D3DFMT_A8
DDS_ALPHA80xff
D3DFMT_A8R8G8B8
DDS_RGBA320xff00000xff000xff0xff000000
D3DFMT_X8R8G8B8
DDS_RGB320xff00000xff000xff
D3DFMT_X8B8G8R8
DDS_RGB320xff0xff000xff0000
**
D3DFMT_A2R10G10B10
DDS_RGBA320x3ff000000xffc000x3ff0xc0000000
D3DFMT_R8G8B8
DDS_RGB240xff00000xff000xff
D3DFMT_X1R5G5B5
DDS_RGB160x7c000x3e00x1f
D3DFMT_A4R4G4B4
DDS_RGBA160xf000xf00xf0xf000
D3DFMT_X4R4G4B4
DDS_RGB160xf000xf00xf
D3DFMT_A8R3G3B2
DDS_RGBA160xe00x1c0x30xff00
D3DFMT_A8L8
DDS_LUMINANCE160xff0xff00
D3DFMT_L16
DDS_LUMINANCE160xffff
D3DFMT_L8
DDS_LUMINANCE80xff
D3DFMT_A4L4
DDS_LUMINANCE80xf0xf0
Resource FormatdwFlagsdwFourCC
DXGI_FORMAT_BC1_UNORM
D3DFMT_DXT1
DDS_FOURCC'DXT1'
DXGI_FORMAT_BC2_UNORM
D3DFMT_DXT3
DDS_FOURCC'DXT3'
DXGI_FORMAT_BC3_UNORM
D3DFMT_DXT5
DDS_FOURCC'DXT5'
*
DXGI_FORMAT_BC4_UNORM
DDS_FOURCC'BC4U'
*
DXGI_FORMAT_BC4_SNORM
DDS_FOURCC'BC4S'
*
DXGI_FORMAT_BC5_UNORM
DDS_FOURCC'ATI2'
*
DXGI_FORMAT_BC5_SNORM
DDS_FOURCC'BC5S'
DXGI_FORMAT_R8G8_B8G8_UNORM
D3DFMT_R8G8_B8G8
DDS_FOURCC'RGBG'
DXGI_FORMAT_G8R8_G8B8_UNORM
D3DFMT_G8R8_G8B8
DDS_FOURCC'GRGB'
*
DXGI_FORMAT_R16G16B16A16_UNORM
D3DFMT_A16B16G16R16
DDS_FOURCC36
*
DXGI_FORMAT_R16G16B16A16_SNORM
D3DFMT_Q16W16V16U16
DDS_FOURCC110
*
DXGI_FORMAT_R16_FLOAT
D3DFMT_R16F
DDS_FOURCC111
*
DXGI_FORMAT_R16G16_FLOAT
D3DFMT_G16R16F
DDS_FOURCC112
*
DXGI_FORMAT_R16G16B16A16_FLOAT
D3DFMT_A16B16G16R16F
DDS_FOURCC113
*
DXGI_FORMAT_R32_FLOAT
D3DFMT_R32F
DDS_FOURCC114
*
DXGI_FORMAT_R32G32_FLOAT
D3DFMT_G32R32F
DDS_FOURCC115
*
DXGI_FORMAT_R32G32B32A32_FLOAT
D3DFMT_A32B32G32R32F
DDS_FOURCC116
D3DFMT_DXT2
DDS_FOURCC'DXT2'
D3DFMT_DXT4
DDS_FOURCC'DXT4'
D3DFMT_UYVY
DDS_FOURCC'UYVY'
D3DFMT_YUY2
DDS_FOURCC'YUY2'
D3DFMT_CxV8U8
DDS_FOURCC117
Any DXGI formatDDS_FOURCC'DX10'
Dds driver manual

* = A robust DDS reader must be able to handle these legacy format codes. However, such a DDS reader should prefer to use the 'DX10' header extension when it writes these format codes to avoid ambiguity.

** = Because of some long-standing issues in common implementations of DDS readers and writers, the most robust way to write out 10:10:10:2-type data is to use the 'DX10' header extension with the DXGI_FORMAT code '24' (that is, the DXGI_FORMAT_R10G10B10A2_UNORM value). D3DFMT_A2R10G10B10 data should be converted to 10:10:10:2-type data before being written out as a DXGI_FORMAT_R10G10B10A2_UNORM format DDS file.

Related topics

BleepingComputer Review:

DDS is a program that will scan your computer and create logs that can be used to display various startup, configuration, and file information from your computer. This program is used in our security forum to provide a detailed overview of what programs are automatically starting when you start Windows. The program will also display information about the computer that will allow us to quickly ascertain whether or not malware may be running on your computer.

To use DDS, simply download the executable and save it to your desktop or other location on your computer. You should then double-click on the DDS.com icon to launch the program. DDS will then start to scan your computer and compile the information found into two log files. When DDS has finished it will launch the two Notepad windows that display the contents of these log files. The contents of these log files can then be attached to a reply in our Virus Removal Forum so that an expert can analyze them.

Dds drivers services

DDS Driver Download For Windows

If you would like to use DDS while receiving help in our Virus Removal forum, you should first follow the steps in this guide:

Dds Driver Download For Windows 8.1

Preparation Guide For Use Before Using Malware Removal Tools and Requesting Help




Comments are closed.