mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-14 22:50:45 +00:00
Fix VK descriptor set slot for motionBlur shader
This commit is contained in:
parent
3a3af32ddb
commit
c1c0334bf2
2 changed files with 3 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue