Fix VK descriptor set slot for motionBlur shader

This commit is contained in:
Stephen Pridham 2022-11-18 08:00:13 -05:00 committed by Robert Beckebans
parent 3a3af32ddb
commit c1c0334bf2
2 changed files with 3 additions and 6 deletions

View file

@ -32,10 +32,10 @@ If you have questions concerning this license or the applicable additional terms
// *INDENT-OFF*
Texture2D t_ViewColor : register( t0 VK_DESCRIPTOR_SET( 1 ) );
Texture2D t_ViewDepth : register( t1 VK_DESCRIPTOR_SET( 1 ) );
Texture2D t_ViewColor : register( t0 VK_DESCRIPTOR_SET( 0 ) );
Texture2D t_ViewDepth : register( t1 VK_DESCRIPTOR_SET( 0 ) );
SamplerState LinearSampler : register( s0 VK_DESCRIPTOR_SET( 2 ) );
SamplerState LinearSampler : register( s0 VK_DESCRIPTOR_SET( 1 ) );
struct PS_IN

View file

@ -26,9 +26,6 @@ If you have questions concerning this license or the applicable additional terms
===========================================================================
*/
#include "global_inc.hlsl"
// *INDENT-OFF*
struct VS_IN
{