High-Level Shader Language

Last updated

A scene containing several different 2D HLSL shaders. Distortion of the statue is achieved purely physically, while the texture of the rectangular frame beside it is based on color intensity. The square in the background has been transformed and rotated. The partial transparency and reflection of the water in the foreground are added by a shader applied finally to the entire scene. HLSL-Examples-1.PNG
A scene containing several different 2D HLSL shaders. Distortion of the statue is achieved purely physically, while the texture of the rectangular frame beside it is based on color intensity. The square in the background has been transformed and rotated. The partial transparency and reflection of the water in the foreground are added by a shader applied finally to the entire scene.

The High-Level Shader Language [1] or High-Level Shading Language [2] (HLSL) is a proprietary shading language developed by Microsoft for the Direct3D 9 API to augment the shader assembly language, and went on to become the required shading language for the unified shader model of Direct3D 10 and higher.

Contents

HLSL is analogous to the GLSL shading language used with the OpenGL standard. It is very similar to the Nvidia Cg shading language, as it was developed alongside it. Early versions of the two languages were considered identical, only marketed differently. [3] HLSL shaders can enable profound speed and detail increases as well as many special effects in both 2D and 3D computer graphics.[ citation needed ]

HLSL programs come in six forms: pixel shaders (fragment in GLSL), vertex shaders, geometry shaders, compute shaders, tessellation shaders (Hull and Domain shaders), and ray tracing shaders (Ray Generation Shaders, Intersection Shaders, Any Hit/Closest Hit/Miss Shaders). A vertex shader is executed for each vertex that is submitted by the application, and is primarily responsible for transforming the vertex from object space to view space, generating texture coordinates, and calculating lighting coefficients such as the vertex's normal, tangent, and bitangent vectors. When a group of vertices (normally 3, to form a triangle) come through the vertex shader, their output position is interpolated to form pixels within its area; this process is known as rasterization.

Optionally, an application using a Direct3D 10/11/12 interface and Direct3D 10/11/12 hardware may also specify a geometry shader. This shader takes as its input some vertices of a primitive (triangle/line/point) and uses this data to generate/degenerate (or tessellate) additional primitives or to change the type of primitives, which are each then sent to the rasterizer.

D3D11.3 and D3D12 introduced Shader Model 5.1 [4] and later 6.0. [5]

Shader model comparison

GPUs listed are the hardware that first supported the given specifications. Manufacturers generally support all lower shader models through drivers. Note that games may claim to require a certain DirectX version, but don't necessarily require a GPU conforming to the full specification of that version, as developers can use a higher DirectX API version to target lower-Direct3D-spec hardware; for instance DirectX 9 exposes features of DirectX7-level hardware that DirectX7 did not, targeting their fixed-function T&L pipeline.

Pixel shader comparison

Pixel shader version1.01.11.2

1.3 [6]

1.4 [6] 2.0 [6] [7] 2.0a [6] [7] [8] 2.0b [6] [7] [9] 3.0 [6] [10] 4.0 [11] 4.1 [12]

5.0 [13]

Dependent texture limit44468Unlimited8UnlimitedUnlimited
Texture instruction limit4446 * 232UnlimitedUnlimitedUnlimitedUnlimited
Arithmetic instruction limit8888 * 264UnlimitedUnlimitedUnlimitedUnlimited
Position registerNoNoNoNoNoNoNoYesYes
Instruction slots88 + 48 + 4(8 + 6) * 264 + 32512512≥ 512≥ 65536
Executed instructions88 + 48 + 4(8 + 6) * 264 + 3251251265536Unlimited
Texture indirections44444Unlimited4UnlimitedUnlimited
Interpolated registers2 + 42 + 42 + 42 + 62 + 82 + 82 + 81032
Instruction predicationNoNoNoNoNoYesNoYesNo
Index input registersNoNoNoNoNoNoNoYesYes
Temp registers22 + 43 + 4612 to 322232324096
Constant registers888832323222416×4096
Arbitrary swizzling NoNoNoNoNoYesNoYesYes
Gradient instructionsNoNoNoNoNoYesNoYesYes
Loop count registerNoNoNoNoNoNoNoYesYes
Face register (2-sided lighting)NoNoNoNoNoNoYesYesYes
Dynamic flow controlNoNoNoNoNoNoNoYes (24)Yes (64)
Bitwise OperatorsNoNoNoNoNoNoNoNoYes
Native IntegersNoNoNoNoNoNoNoNoYes


"32 + 64" for Executed Instructions means "32 texture instructions and 64 arithmetic instructions."

Vertex shader comparison

Vertex shader version1.01.1 [14] 2.0 [7] [14] [8] 2.0a [7] [14] [8] 3.0 [10] [14] 4.0 [11]
4.1 [12]
5.0 [13]
# of instruction slots128128256256≥ 512≥ 65536
Max # of instructions executed12812810246553665536Unlimited
Instruction predication NoNoNoYesYesYes
Temp registers12121216324096
# constant registers≥ 96≥ 96≥ 256256≥ 25616×4096
Address registerNoYesYesYesYesYes
Static flow controlNoNoYesYesYesYes
Dynamic flow controlNoNoNoYesYesYes
Dynamic flow control depth242464
Vertex texture fetchNoNoNoNoYesYes
# of texture samplers4128
Geometry instancing supportNoNoNoNoYesYes
Bitwise operatorsNoNoNoNoNoYes
Native integersNoNoNoNoNoYes

See also

Footnotes

  1. "Writing HLSL Shaders in Direct3D 9". Microsoft Docs . Retrieved February 22, 2021.
  2. "High-level shader language (HLSL)". Microsoft Docs . Retrieved February 22, 2021.
  3. "Fusion Industries :: Cg and HLSL FAQ ::". August 24, 2012. Archived from the original on August 24, 2012.
  4. "Shader Model 5.1 Objects". Microsoft Docs . Retrieved February 22, 2021.
  5. "HLSL Shader Model 6.0". Microsoft Docs . Retrieved February 22, 2021.
  6. 1 2 3 4 5 6 "Pixel Shader Differences". Microsoft Docs . August 19, 2020. Retrieved February 22, 2021.
  7. 1 2 3 4 5 Peeper, Craig; Mitchell, Jason L. (July 2003). "Introduction to the DirectX 9 High-Level Shader Language". Microsoft Docs . Retrieved February 22, 2021.
  8. 1 2 3 Shimpi, Anand Lal. "NVIDIA Introduces GeForce FX (NV30)". AnandTech . Retrieved February 22, 2021.
  9. Wilson, Derek. "ATI Radeon X800 Pro and XT Platinum Edition: R420 Arrives". AnandTech . Retrieved February 22, 2021.
  10. 1 2 Shader Model 3.0, Ashu Rege, NVIDIA Developer Technology Group, 2004.
  11. 1 2 The Direct3D 10 System, David Blythe, Microsoft Corporation, 2006.
  12. 1 2 "Registers - ps_4_1". Microsoft Docs . August 23, 2019. Retrieved February 22, 2021.
  13. 1 2 "Registers - ps_5_0". Microsoft Docs . August 23, 2019. Retrieved February 22, 2021.
  14. 1 2 3 4 "Vertex Shader Differences". Microsoft Docs . August 19, 2020. Retrieved February 22, 2021.

Related Research Articles

<span class="mw-page-title-main">DirectX</span> Collection of multimedia related APIs on Microsoft platforms

Microsoft DirectX is a collection of application programming interfaces (APIs) for handling tasks related to multimedia, especially game programming and video, on Microsoft platforms. Originally, the names of these APIs all began with "Direct", such as Direct3D, DirectDraw, DirectMusic, DirectPlay, DirectSound, and so forth. The name DirectX was coined as a shorthand term for all of these APIs and soon became the name of the collection. When Microsoft later set out to develop a gaming console, the X was used as the basis of the name Xbox to indicate that the console was based on DirectX technology. The X initial has been carried forward in the naming of APIs designed for the Xbox such as XInput and the Cross-platform Audio Creation Tool (XACT), while the DirectX pattern has been continued for Windows APIs such as Direct2D and DirectWrite.

<span class="mw-page-title-main">OpenGL</span> Cross-platform graphics API

OpenGL is a cross-language, cross-platform application programming interface (API) for rendering 2D and 3D vector graphics. The API is typically used to interact with a graphics processing unit (GPU), to achieve hardware-accelerated rendering.

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 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, W-buffering, stencil buffering, spatial anti-aliasing, alpha blending, color blending, mipmapping, texture blending, clipping, culling, atmospheric effects, perspective-correct texture mapping, programmable HLSL shaders and effects. 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.

<span class="mw-page-title-main">Graphics processing unit</span> Specialized electronic circuit; graphics accelerator

A graphics processing unit (GPU) is a specialized electronic circuit initially designed for digital image processing and to accelerate computer graphics, being present either as a discrete video card or embedded on motherboards, mobile phones, personal computers, workstations, and game consoles. After their initial design, GPUs were found to be useful for non-graphic calculations involving embarrassingly parallel problems due to their parallel structure. Other non-graphical uses include the training of neural networks and cryptocurrency mining.

<span class="mw-page-title-main">GeForce 3 series</span> Series of GPUs by Nvidia

The GeForce 3 series (NV20) is the third generation of Nvidia's GeForce line of graphics processing units (GPUs). Introduced in February 2001, it advanced the GeForce architecture by adding programmable pixel and vertex shaders, multisample anti-aliasing and improved the overall efficiency of the rendering process.

The R420 GPU, developed by ATI Technologies, was the company's basis for its 3rd-generation DirectX 9.0/OpenGL 2.0-capable graphics cards. Used first on the Radeon X800, the R420 was produced on a 0.13 micrometer low-K photolithography process and used GDDR-3 memory. The chip was designed for AGP graphics cards.

<span class="mw-page-title-main">Shader</span> Type of program in a graphical processing unit (GPU)

In computer graphics, a shader is a computer program that calculates the appropriate levels of light, darkness, and color during the rendering of a 3D scene—a process known as shading. Shaders have evolved to perform a variety of specialized functions in computer graphics special effects and video post-processing, as well as general-purpose computing on graphics processing units.

A shading language is a graphics programming language adapted to programming shader effects. Shading languages usually consist of special data types like "vector", "matrix", "color" and "normal".

<span class="mw-page-title-main">Radeon R200 series</span> Series of video cards

The R200 is the second generation of GPUs used in Radeon graphics cards and developed by ATI Technologies. This GPU features 3D acceleration based upon Microsoft Direct3D 8.1 and OpenGL 1.3, a major improvement in features and performance compared to the preceding Radeon R100 design. The GPU also includes 2D GUI acceleration, video acceleration, and multiple display outputs. "R200" refers to the development codename of the initially released GPU of the generation. It is the basis for a variety of other succeeding products.

<span class="mw-page-title-main">Quadro</span> Brand of Nvidia graphics cards used in workstations

Quadro was Nvidia's brand for graphics cards intended for use in workstations running professional computer-aided design (CAD), computer-generated imagery (CGI), digital content creation (DCC) applications, scientific calculations and machine learning from 2000 to 2020.

<span class="mw-page-title-main">Radeon R100 series</span> Series of video cards

The Radeon R100 is the first generation of Radeon graphics chips from ATI Technologies. The line features 3D acceleration based upon Direct3D 7.0 and OpenGL 1.3, and all but the entry-level versions offloading host geometry calculations to a hardware transform and lighting (T&L) engine, a major improvement in features and performance compared to the preceding Rage design. The processors also include 2D GUI acceleration, video acceleration, and multiple display outputs. "R100" refers to the development codename of the initially released GPU of the generation. It is the basis for a variety of other succeeding products.

Windows Display Driver Model is the graphic driver architecture for video card drivers running Microsoft Windows versions beginning with Windows Vista.

<span class="mw-page-title-main">Unified shader model</span> GPU whose shading hardware has equal capabilities for all stages of rendering

In the field of 3D computer graphics, the unified shader model refers to a form of shader hardware in a graphical processing unit (GPU) where all of the shader stages in the rendering pipeline have the same capabilities. They can all read textures and buffers, and they use instruction sets that are almost identical.

ARB assembly language is a low-level shading language, which can be characterized as an assembly language. It was created by the OpenGL Architecture Review Board (ARB) to standardize GPU instructions controlling the hardware graphics pipeline.

<span class="mw-page-title-main">Radeon 9000 series</span> Series of video cards

The R300 GPU, introduced in August 2002 and developed by ATI Technologies, is its third generation of GPU used in Radeon graphics cards. This GPU features 3D acceleration based upon Direct3D 9.0 and OpenGL 2.0, a major improvement in features and performance compared to the preceding R200 design. R300 was the first fully Direct3D 9-capable consumer graphics chip. The processors also include 2D GUI acceleration, video acceleration, and multiple display outputs.

<span class="mw-page-title-main">Kepler (microarchitecture)</span> GPU microarchitecture by Nvidia

Kepler is the codename for a GPU microarchitecture developed by Nvidia, first introduced at retail in April 2012, as the successor to the Fermi microarchitecture. Kepler was Nvidia's first microarchitecture to focus on energy efficiency. Most GeForce 600 series, most GeForce 700 series, and some GeForce 800M series GPUs were based on Kepler, all manufactured in 28 nm. Kepler found use in the GK20A, the GPU component of the Tegra K1 SoC, and in the Quadro Kxxx series, the Quadro NVS 510, and Tesla computing modules.

Vulkan is a low-level, low-overhead cross-platform API and open standard for 3D graphics and computing. It was intended to address the shortcomings of OpenGL, and allow developers more control over the GPU. It is designed to support a wide variety of GPUs, CPUs and operating systems, and it is also designed to work with modern multi-core CPUs.

Feature levels in Direct3D define strict sets of features required by certain versions of the Direct3D API and runtime, as well as additional optional feature levels available within the same API version.

DirectX Raytracing (DXR) is a feature introduced in Microsoft's DirectX 12 that implements ray tracing, for video graphic rendering. DXR was released with the Windows 10 October update on October 10, 2018. It requires an AMD Radeon RX 6000 series, AMD Radeon RX 7000 series, Intel Arc A series, or Nvidia GeForce 20, 30, or 40 series video card, which is designed to handle the high computing load used for ray tracing.

<span class="mw-page-title-main">Cg (programming language)</span> Shading language

Cg and High-Level Shader Language (HLSL) are two names given to a high-level shading language developed by Nvidia and Microsoft for programming shaders. Cg/HLSL is based on the C programming language and although they share the same core syntax, some features of C were modified and new data types were added to make Cg/HLSL more suitable for programming graphics processing units.