DirectX – NVIDIA Technical Blog News and tutorials for developers, data scientists, and IT admins 2025-07-03T22:20:47Z http://www.open-lab.net/blog/feed/ Louis Bavoil <![CDATA[Powerful Shader Insights: Using Shader Debug Info with NVIDIA Nsight Graphics]]> http://www.open-lab.net/blog/?p=79026 2024-12-09T16:54:30Z 2024-03-14T20:00:00Z As ray tracing becomes the predominant rendering technique in modern game engines, a single GPU RayGen shader can now perform most of the light simulation of a...]]> As ray tracing becomes the predominant rendering technique in modern game engines, a single GPU RayGen shader can now perform most of the light simulation of a...

As ray tracing becomes the predominant rendering technique in modern game engines, a single GPU RayGen shader can now perform most of the light simulation of a frame. To manage this level of complexity, it becomes necessary to observe a decomposition of shader performance at the HLSL or GLSL source-code level. As a result, shader profilers are now a must-have tool for optimizing ray tracing.

Source

]]>
0
Wessam Bahnassi <![CDATA[Advancing GPU-Driven Rendering with Work Graphs in Direct3D 12]]> http://www.open-lab.net/blog/?p=78794 2024-04-09T23:45:27Z 2024-03-11T17:00:00Z GPU-driven rendering has long been a major goal for many game applications. It enables better scalability for handling large virtual scenes and reduces cases...]]> GPU-driven rendering has long been a major goal for many game applications. It enables better scalability for handling large virtual scenes and reduces cases...

GPU-driven rendering has long been a major goal for many game applications. It enables better scalability for handling large virtual scenes and reduces cases where the CPU could bottleneck a game��s performance. Short of running the game��s logic on the GPU, I see the pinnacle of GPU-driven rendering as a scenario in which the CPU sends the GPU only the new frame��s camera information��

Source

]]>
0
Wessam Bahnassi <![CDATA[Work Graphs in Direct3D 12: A Case Study of Deferred Shading]]> http://www.open-lab.net/blog/?p=78888 2024-09-04T22:44:13Z 2024-03-11T17:00:00Z When it comes to game application performance, GPU-driven rendering enables better scalability for handling large virtual scenes. Direct3D 12 (D3D12) introduces...]]> When it comes to game application performance, GPU-driven rendering enables better scalability for handling large virtual scenes. Direct3D 12 (D3D12) introduces...

When it comes to game application performance, GPU-driven rendering enables better scalability for handling large virtual scenes. Direct3D 12 (D3D12) introduces work graphs as a programming paradigm that enables the GPU to generate work for itself on the fly. For an introduction to work graphs, see Advancing GPU-Driven Rendering with Work Graphs in Direct3D 12. This post features a Direct3D��

Source

]]>
0
Andrew Allan <![CDATA[Ray Tracing Validation for DirectX 12 and Vulkan]]> http://www.open-lab.net/blog/?p=77124 2024-07-24T17:22:07Z 2024-02-26T18:00:00Z This post was updated on April 17, 2024. For developers working on ray tracing applications for both DirectX 12 and Vulkan, ray tracing validation is here to...]]> This post was updated on April 17, 2024. For developers working on ray tracing applications for both DirectX 12 and Vulkan, ray tracing validation is here to...Decorative image of code block with green lightbeams shining on a figure walking on a computer chip between monitors.

This post was updated on April 17, 2024. For developers working on ray tracing applications for both DirectX 12 and Vulkan, ray tracing validation is here to help you improve performance, find hard-to-debug issues, and root-cause crashes. Unlike existing debug solutions, ray tracing validation performs checks at the driver level, which enables it to identify potential problems that��

Source

]]>
3
Lars Nordskog <![CDATA[Advanced API Performance: Swap Chains]]> http://www.open-lab.net/blog/?p=74280 2023-12-11T20:20:45Z 2023-12-15T17:00:00Z Swap chains are an integral part of how you get rendering data output to a screen. They usually consist of some group of output-ready buffers, each of which can...]]> Swap chains are an integral part of how you get rendering data output to a screen. They usually consist of some group of output-ready buffers, each of which can...A graphic of a computer sending code to multiple stacks.

Swap chains are an integral part of how you get rendering data output to a screen. They usually consist of some group of output-ready buffers, each of which can be rendered to one at a time in rotation. In parallel with rendering to one of a swap chain��s buffers, some other buffer in the swap chain is generally read from for display output. This post covers best practices when working with��

Source

]]>
0
Oleg Kuznetsov <![CDATA[Advanced API Performance: Intrinsics]]> http://www.open-lab.net/blog/?p=71300 2023-12-30T00:44:05Z 2023-11-21T18:37:48Z Intrinsics can be thought of as higher-level abstractions of specific hardware instructions. They offer direct access to low-level operations or...]]> Intrinsics can be thought of as higher-level abstractions of specific hardware instructions. They offer direct access to low-level operations or...A graphic of a computer sending code to multiple stacks.

Intrinsics can be thought of as higher-level abstractions of specific hardware instructions. They offer direct access to low-level operations or hardware-specific features, enabling increased performance. In this way, operations can be performed across threads within a warp, also known as a wavefront. The following code example is an example with SM6��

Source

]]>
0
Alexey Panteleev <![CDATA[Unlocking GPU Intrinsics in HLSL]]> http://www.open-lab.net/blog/?p=72095 2023-11-30T19:43:27Z 2023-11-21T18:08:42Z There are some useful intrinsic functions in the NVIDIA GPU instruction set that are not included in standard graphics APIs. Updated from the original 2016 post...]]> There are some useful intrinsic functions in the NVIDIA GPU instruction set that are not included in standard graphics APIs. Updated from the original 2016 post...Decorative image of blocks of light against a dark background.

There are some useful intrinsic functions in the NVIDIA GPU instruction set that are not included in standard graphics APIs. Updated from the original 2016 post to add information about new intrinsics and cross-vendor APIs in DirectX and Vulkan. For example, a shader can use warp shuffle instructions to exchange data between threads in a warp without going through shared memory��

Source

]]>
0
Leroy Sikkes <![CDATA[Advanced API Performance: Descriptors]]> http://www.open-lab.net/blog/?p=71317 2023-11-02T20:23:13Z 2023-10-27T16:00:00Z By using descriptor types, you can bind resources to shaders and specify how those resources are accessed. This creates efficient communication between the CPU...]]> By using descriptor types, you can bind resources to shaders and specify how those resources are accessed. This creates efficient communication between the CPU...A graphic of a computer sending code to multiple stacks.

By using descriptor types, you can bind resources to shaders and specify how those resources are accessed. This creates efficient communication between the CPU and GPU and enables shaders to access the necessary data during rendering.

Source

]]>
0
Leroy Sikkes <![CDATA[Advanced API Performance: Debugging]]> http://www.open-lab.net/blog/?p=71308 2024-08-28T17:34:51Z 2023-10-13T16:00:00Z NVIDIA offers a large suite of tools for graphics debugging, including NVIDIA Nsight System for CPU debugging, and Nsight Graphics for GPU debugging. Nsight...]]> NVIDIA offers a large suite of tools for graphics debugging, including NVIDIA Nsight System for CPU debugging, and Nsight Graphics for GPU debugging. Nsight...A graphic of a computer sending code to multiple stacks.

NVIDIA offers a large suite of tools for graphics debugging, including NVIDIA Nsight System for CPU debugging, and Nsight Graphics for GPU debugging. Nsight Aftermath is useful for analyzing crash dumps. Thanks to Patrick Neill, Jeffrey Kiel, Justin Kim, Andrew Allan, and Louis Bavoil for their help with this post.

Source

]]>
0
Johannes Deligiannis <![CDATA[Advanced API Performance: Shaders]]> http://www.open-lab.net/blog/?p=70243 2023-10-25T23:52:32Z 2023-09-01T15:36:30Z This post covers best practices when working with shaders on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see all Advanced...]]> This post covers best practices when working with shaders on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see all Advanced...A graphic of a computer sending code to multiple stacks.

This post covers best practices when working with shaders on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see all Advanced API Performance tips. Shaders play a critical role in graphics programming by enabling you to control various aspects of the rendering process. They run on the GPU and are responsible for manipulating vertices, pixels, and other data.

Source

]]>
0
Dirk Gerrit van Antwerpen <![CDATA[Solving Self-Intersection Artifacts in DirectX Raytracing]]> http://www.open-lab.net/blog/?p=68307 2023-10-25T23:52:33Z 2023-08-31T17:46:30Z Ray and path tracing algorithms construct light paths by starting at the camera or the light sources and intersecting rays with the scene geometry. As objects...]]> Ray and path tracing algorithms construct light paths by starting at the camera or the light sources and intersecting rays with the scene geometry. As objects...

Ray and path tracing algorithms construct light paths by starting at the camera or the light sources and intersecting rays with the scene geometry. As objects are hit, new secondary rays are generated on these surfaces to continue the paths. In theory, these secondary rays will not yield an intersection with the same triangle again, as intersections at a distance of zero are excluded by the��

Source

]]>
2
Tim Cheblokov <![CDATA[Advanced API Performance: Pipeline State Objects]]> http://www.open-lab.net/blog/?p=67779 2023-10-02T05:00:51Z 2023-07-18T19:00:00Z This post covers best practices when working with pipeline state objects on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see...]]> This post covers best practices when working with pipeline state objects on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see...A graphic of a computer sending code to multiple stacks.

This post covers best practices when working with pipeline state objects on NVIDIA GPUs. To get a high and consistent frame rate in your applications, see all Advanced API Performance tips. Pipeline state objects (PSOs) define how input data is interpreted and rendered by the hardware when submitting work to the GPUs. Proper management of PSOs is essential for optimal usage of system��

Source

]]>
0
Louis Bavoil <![CDATA[In-Game GPU Profiling for DirectX 12 Using SetBackgroundProcessingMode]]> http://www.open-lab.net/blog/?p=67605 2023-10-25T23:52:36Z 2023-07-10T17:00:00Z If you are a DirectX 12 (DX12) game developer, you may have noticed that GPU times displayed in real time in your game HUD may change over time for a given...]]> If you are a DirectX 12 (DX12) game developer, you may have noticed that GPU times displayed in real time in your game HUD may change over time for a given...

If you are a DirectX 12 (DX12) game developer, you may have noticed that GPU times displayed in real time in your game HUD may change over time for a given pass. This may be the case even if nothing has changed on the application side. One reason for GPU time variations may be GPU Boost dynamically changing the GPU core clock frequency. Still, even with GPU Boost disabled using the DX12��

Source

]]>
0
Chris Hebert <![CDATA[End-to-End AI for NVIDIA-Based PCs: ONNX and DirectML]]> http://www.open-lab.net/blog/?p=63715 2025-03-13T20:12:58Z 2023-04-25T15:00:00Z This post is part of a series about optimizing end-to-end AI. While NVIDIA hardware can process the individual operations that constitute a neural network...]]> This post is part of a series about optimizing end-to-end AI. While NVIDIA hardware can process the individual operations that constitute a neural network...

This post is part of a series about optimizing end-to-end AI. While NVIDIA hardware can process the individual operations that constitute a neural network incredibly fast, it is important to ensure that you are using the tools correctly. Using the respective tools such as ONNX Runtime or TensorRT out of the box with ONNX usually gives you good performance, but why settle for good performance��

Source

]]>
0
Diego Farinha <![CDATA[Top AI for Creative Applications Sessions at NVIDIA GTC 2023]]> http://www.open-lab.net/blog/?p=61959 2023-03-14T19:59:47Z 2023-03-14T21:00:00Z Learn how AI is boosting creative applications for creators during NVIDIA GTC 2023, March 20-23.]]> Learn how AI is boosting creative applications for creators during NVIDIA GTC 2023, March 20-23.Illustration of computer screens in stylized design.

Learn how AI is boosting creative applications for creators during NVIDIA GTC 2023, March 20-23.

Source

]]>
0
Chris Hebert <![CDATA[End-to-End AI for NVIDIA-Based PCs: An Introduction to Optimization]]> http://www.open-lab.net/blog/?p=59060 2023-06-12T08:18:26Z 2022-12-15T23:35:00Z This post is the first in a series about optimizing end-to-end AI. The great thing about the GPU is that it offers tremendous parallelism; it allows you to...]]> This post is the first in a series about optimizing end-to-end AI. The great thing about the GPU is that it offers tremendous parallelism; it allows you to...End-to-end AI series Part 1

This post is the first in a series about optimizing end-to-end AI. The great thing about the GPU is that it offers tremendous parallelism; it allows you to perform many tasks at the same time. At its most granular level, this comes down to the fact that there are thousands of tiny processing cores that run the same instruction at the same time. But that is not where such parallelism stops.

Source

]]>
1
Yury Uralsky <![CDATA[Accelerating Load Times for DirectX Games and Apps with GDeflate for DirectStorage]]> http://www.open-lab.net/blog/?p=56957 2023-10-25T23:52:48Z 2022-11-07T19:00:00Z Load times. They are the bane of any developer trying to construct a seamless experience. Trying to hide loading in a game by forcing a player to shimmy...]]> Load times. They are the bane of any developer trying to construct a seamless experience. Trying to hide loading in a game by forcing a player to shimmy...Photo of a woman looking at her monitor.

Load times. They are the bane of any developer trying to construct a seamless experience. Trying to hide loading in a game by forcing a player to shimmy through narrow passages or take extremely slow elevators breaks immersion. Now, developers have a better solution. NVIDIA collaborated with Microsoft and IHV partners to develop GDeflate for DirectStorage 1.1, an open standard for GPU��

Source

]]>
0
Nico Marniok <![CDATA[Synchronizing Present Calls Between Applications on Distributed Systems with DirectX 12]]> http://www.open-lab.net/blog/?p=48191 2023-06-12T09:33:17Z 2022-07-26T16:00:00Z Swap groups and swap barriers are well-known methods to synchronize buffer swaps between different windows on the same system and on distributed systems,...]]> Swap groups and swap barriers are well-known methods to synchronize buffer swaps between different windows on the same system and on distributed systems,...

Swap groups and swap barriers are well-known methods to synchronize buffer swaps between different windows on the same system and on distributed systems, respectively. Initially introduced for OpenGL, they were later extended through public NvAPI interfaces and supported in DirectX 9 through 12. NVIDIA now introduces the concept of present barriers. They combine swap groups and swap barriers��

Source

]]>
1
Zach Lo <![CDATA[Raising the Bar for Path-Traced Rendering in Unreal Engine 5: Q&A with 3D Artist Daniel Martinger]]> http://www.open-lab.net/blog/?p=46863 2023-10-25T23:52:54Z 2022-04-20T18:30:28Z NVIDIA was fortunate enough to speak with 3D prop and environment artist Daniel Martinger, who captured the attention of the computer graphics world with his...]]> NVIDIA was fortunate enough to speak with 3D prop and environment artist Daniel Martinger, who captured the attention of the computer graphics world with his...

NVIDIA was fortunate enough to speak with 3D prop and environment artist Daniel Martinger, who captured the attention of the computer graphics world with his stunningly realistic path-traced rendered scene entitled ��The Carpenter��s Cellar.�� Below, Martinger discusses how he created this piece of work using an NVIDIA RTX 3090 and Unreal Engine 5, along with where he finds inspiration.

Source

]]>
0
Nathan Reed https://www.reedbeta.com <![CDATA[Visualizing Depth Precision]]> http://www.open-lab.net/blog/?p=32034 2023-02-13T18:06:03Z 2021-10-21T18:30:00Z This post was originally published on the Developer Zone. Depth precision is a pain that every graphics programmer has to struggle with sooner or later. Many...]]> This post was originally published on the Developer Zone. Depth precision is a pain that every graphics programmer has to struggle with sooner or later. Many...

This post was originally published on the Developer Zone. Depth precision is a pain that every graphics programmer has to struggle with sooner or later. Many articles and papers have been written on the topic, and a variety of different depth buffer formats and setups are found across different games, engines, and devices. Because of the way it interacts with perspective projection��

Source

]]>
0
Alexey Panteleev <![CDATA[Writing Portable Rendering Code with NVRHI]]> http://www.open-lab.net/blog/?p=36509 2023-10-25T23:53:01Z 2021-08-20T20:33:46Z Modern graphics APIs, such as Direct3D 12 and Vulkan, are designed to provide relatively low-level access to the GPU and eliminate the GPU driver overhead...]]> Modern graphics APIs, such as Direct3D 12 and Vulkan, are designed to provide relatively low-level access to the GPU and eliminate the GPU driver overhead...

Modern graphics APIs, such as Direct3D 12 and Vulkan, are designed to provide relatively low-level access to the GPU and eliminate the GPU driver overhead associated with API translation. This low-level interface allows applications to have more control over the system and provides the ability to manage pipelines, shader compilation, memory allocations, and resource descriptors in a way that is��

Source

]]>
7
DeepChand Palswamy <![CDATA[Delivering Dynamic Foveated Rendering with NVIDIA VRSS 2]]> http://www.open-lab.net/blog/?p=29692 2023-03-22T01:12:01Z 2021-04-12T17:00:00Z Designing rich content and graphics for VR experiences means creating complex materials and high-resolution textures. But rendering all that content at VR...]]> Designing rich content and graphics for VR experiences means creating complex materials and high-resolution textures. But rendering all that content at VR...

Designing rich content and graphics for VR experiences means creating complex materials and high-resolution textures. But rendering all that content at VR resolutions and frame rates can be challenging, especially when rendering at the highest quality. You can address this challenge by using variable rate shading (VRS) to focus shader resources on certain parts of an image��specifically��

Source

]]>
0
Christoph Kubisch <![CDATA[Using Mesh Shaders for Professional Graphics]]> http://www.open-lab.net/blog/?p=22555 2024-06-12T19:50:37Z 2020-12-08T21:16:49Z Mesh shaders were introduced with the Turing architecture and are shipping with Ampere as well. In this post, I offer a detailed look over mesh shader...]]> Mesh shaders were introduced with the Turing architecture and are shipping with Ampere as well. In this post, I offer a detailed look over mesh shader...

Mesh shaders were introduced with the Turing architecture and are shipping with Ampere as well. In this post, I offer a detailed look over mesh shader experiences for these hardware architectures so far. The context of these results was primarily CAD and DCC viewport or VR-centric. However, some of it may be applicable to games as well, which increase in geometric complexity.

Source

]]>
3
Nefi Alarcon <![CDATA[DirectX 12 Ultimate Preview Driver Enables DXR 1.1, Mesh Shaders, Variable Rate Shading, and More]]> https://news.www.open-lab.net/?p=16847 2023-10-26T17:02:45Z 2020-05-01T01:52:28Z To get the most out of DirectX 12 Ultimate, we��ve provided early public access to the NVIDIA DirectX Ultimate Developer Preview Driver [450.82] on our DirextX...]]> To get the most out of DirectX 12 Ultimate, we��ve provided early public access to the NVIDIA DirectX Ultimate Developer Preview Driver [450.82] on our DirextX...

To get the most out of DirectX 12 Ultimate, we��ve provided early public access to the NVIDIA DirectX Ultimate Developer Preview Driver [450.82] on our DirextX developer page, for both NVIDIA GeForce and NVIDIA Quadro. This new driver will let you go hands-on with DirectX 12 Ultimate��s exciting new features: DXR traces paths of light with physics calculations��

Source

]]>
0
Fabian Thuering <![CDATA[Optimizing Game Development with GPU Performance Events]]> http://www.open-lab.net/blog/?p=16264 2024-08-28T18:25:00Z 2020-01-31T17:43:25Z GPU performance events can be used to instrument your game by labeling regions and marking important occurrences. A performance event represents a logical,...]]> GPU performance events can be used to instrument your game by labeling regions and marking important occurrences. A performance event represents a logical,...Single frame from Metro Exodus for performance event example

GPU performance events can be used to instrument your game by labeling regions and marking important occurrences. A performance event represents a logical, hierarchical grouping of work, consisting of a begin/end marker pair. There are best practices for GPU performance events that are universally used by profiling tools such as NVIDIA Nsight Graphics and NVIDIA Nsight Systems��

Source

]]>
0
DeepChand Palswamy <![CDATA[NVIDIA VRSS, a Zero-Effort Way to Improve Your VR Image Quality]]> http://www.open-lab.net/blog/?p=16227 2023-10-25T23:54:08Z 2020-01-10T19:10:22Z [stextbox id="info"]For information about VRSS 2, see Delivering Dynamic Foveated Rendering with NVIDIA VRSS 2.[/stextbox] The Virtual Reality (VR) industry is...]]> [stextbox id="info"]For information about VRSS 2, see Delivering Dynamic Foveated Rendering with NVIDIA VRSS 2.[/stextbox] The Virtual Reality (VR) industry is...

For information about VRSS 2, see Delivering Dynamic Foveated Rendering with NVIDIA VRSS 2. The Virtual Reality (VR) industry is in the midst of a new hardware cycle �C higher resolution headsets and better optics being the key focus points for the device manufacturers. Similarly on the software front, there has been a wave of content-rich applications and an emphasis on flawless VR��

Source

]]>
5
Louis Bavoil <![CDATA[The Peak-Performance-Percentage Analysis Method for Optimizing Any GPU Workload]]> http://www.open-lab.net/blog/?p=12004 2024-08-28T18:26:12Z 2019-06-21T17:33:49Z Figuring out how to reduce the GPU frame time of a rendering application on PC is challenging for even the most experienced PC game developers. In this blog...]]> Figuring out how to reduce the GPU frame time of a rendering application on PC is challenging for even the most experienced PC game developers. In this blog...

Figuring out how to reduce the GPU frame time of a rendering application on PC is challenging for even the most experienced PC game developers. In this blog post, we describe a performance triage method we��ve been using internally at NVIDIA to let us figure out the main performance limiters of any given GPU workload (also known as perf marker or call range), using NVIDIA-specific hardware metrics.

Source

]]>
6
Evan Hart <![CDATA[Introduction to Ray Tracing in Unreal Engine 4.22]]> http://www.open-lab.net/blog/?p=14177 2023-10-25T23:54:17Z 2019-04-01T13:00:30Z Epic Games is adding ��Early Access�� support for ray tracing through the DirectX Raytracing API (DXR) to Unreal Engine with the pending release of Unreal...]]> Epic Games is adding ��Early Access�� support for ray tracing through the DirectX Raytracing API (DXR) to Unreal Engine with the pending release of Unreal...

Epic Games is adding ��Early Access�� support for ray tracing through the DirectX Raytracing API (DXR) to Unreal Engine with the pending release of Unreal Engine 4.22. Demos dating back to GDC 2018 show impressive ray tracing results using DXR. However, UE 4.22 integrates ray tracing support into the mainline branch, making ray tracing available to the wider world. While 4.22 is an early release��

Source

]]>
0
Juha Sjoholm <![CDATA[Effectively Integrating RTX Ray Tracing into a Real-Time Rendering Engine]]> http://www.open-lab.net/blog/?p=12553 2023-02-13T18:07:13Z 2018-10-29T13:00:04Z RTX is NVIDIA's new platform for hybrid rendering, allowing the combination of rasterization and compute-based techniques with hardware-accelerated ray tracing...]]> RTX is NVIDIA's new platform for hybrid rendering, allowing the combination of rasterization and compute-based techniques with hardware-accelerated ray tracing...

RTX is NVIDIA��s new platform for hybrid rendering, allowing the combination of rasterization and compute-based techniques with hardware-accelerated ray tracing and deep learning. It has already been adopted in a number of games and engines. Based on those experiences, this blog aims to give the reader an insight into how RTX ray tracing is best integrated into real-time applications today.

Source

]]>
0
Martin-Karl Lefrancois <![CDATA[Video Series: Practical Real-Time Ray Tracing With RTX]]> http://www.open-lab.net/blog/?p=12507 2023-02-13T18:06:30Z 2018-10-23T13:00:25Z RTX introduces an exciting and fundamental shift in the way lighting systems work in games and applications. In this video series, NVIDIA Engineers Martin-Karl...]]> RTX introduces an exciting and fundamental shift in the way lighting systems work in games and applications. In this video series, NVIDIA Engineers Martin-Karl...

RTX introduces an exciting and fundamental shift in the way lighting systems work in games and applications. In this video series, NVIDIA Engineers Martin-Karl Lefrancois and Pascal Gautron help you get started with real-time ray tracing. You��ll learn how data and rendering is managed, how acceleration structures and shaders work, and what new components are needed for your pipeline.

Source

]]>
2
Ignacio Llamas <![CDATA[Coffee Break Series: Ray Tracing in Games with NVIDIA RTX]]> http://www.open-lab.net/blog/?p=10804 2023-02-13T18:06:39Z 2018-06-21T01:51:15Z Ray tracing will soon revolutionize the way video games look. Ray tracing simulates how rays of light hit and bounce off of objects, enabling developers to...]]> Ray tracing will soon revolutionize the way video games look. Ray tracing simulates how rays of light hit and bounce off of objects, enabling developers to...

Ray tracing will soon revolutionize the way video games look. Ray tracing simulates how rays of light hit and bounce off of objects, enabling developers to create stunning imagery that lives up to the word ��photorealistic��. Ignacio Llamas and Edward Liu from NVIDIA��s real-time rendering software team will introduce you to real-time ray tracing in this series of seven short videos.

Source

]]>
4
Vishwesh Inamdar <![CDATA[NVIDIA SMP Assist API for VR Programming]]> http://www.open-lab.net/blog/?p=10182 2022-08-21T23:38:52Z 2018-04-25T16:01:41Z The NVIDIA SMP (simultaneous multi-projection) Assist NVAPI driver extension is a simple method for integrating Multi-Res Shading and Lens-Matched Shading into...]]> The NVIDIA SMP (simultaneous multi-projection) Assist NVAPI driver extension is a simple method for integrating Multi-Res Shading and Lens-Matched Shading into...Head-Mounted Display

The NVIDIA SMP (simultaneous multi-projection) Assist NVAPI driver extension is a simple method for integrating Multi-Res Shading and Lens-Matched Shading into a VR application. It encapsulates a notable amount of state setup and API calls into a simplified API, thereby substantially reducing the complexity of integrating NVIDIA VRWorks into an application. Specifically, the SMP Assist driver��

Source

]]>
7
Mathias Schott <![CDATA[Reading Between The Threads: Shader Intrinsics]]> http://www.open-lab.net/blog/?p=72093 2023-11-25T02:05:16Z 2016-07-29T16:00:00Z When writing compute shaders, it��s often necessary to communicate values between threads. This is typically done through shared memory. Kepler GPUs introduced...]]> When writing compute shaders, it��s often necessary to communicate values between threads. This is typically done through shared memory. Kepler GPUs introduced...Decorative image of a light network with peaks and valleys.

When writing compute shaders, it��s often necessary to communicate values between threads. This is typically done through shared memory. Kepler GPUs introduced shuffle intrinsics, which enable threads of a warp to directly read each other��s registers, avoiding memory access and synchronization. Shared memory is relatively fast but instructions that operate without using memory of any kind are��

Source

]]>
0
���˳���97caoporen����