This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/SkyboxPixelShader.hlsl
2022-04-03 17:26:55 -04:00

9 lines
217 B
HLSL

#include "SkyboxDefines.hlsli"
TextureCube SkyTexture : register(t0);
SamplerState Sampler : register(s0);
float4 main(SkyboxVertexToPixel input) : SV_TARGET
{
return SkyTexture.Sample(Sampler, input.sampleDir);
}