mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 21:29:18 +02:00
11 lines
233 B
HLSL
11 lines
233 B
HLSL
#ifndef GBUFFER_CONTACT_SHADOWS_HLSLI
|
|
#define GBUFFER_CONTACT_SHADOWS_HLSLI
|
|
Texture2D<float> g_ContactShadows : register(t12);
|
|
|
|
float GetContactShadows(in uint2 pixel_position) {
|
|
return g_ContactShadows[pixel_position];
|
|
}
|
|
|
|
#endif
|
|
|