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/SkyboxDefines.hlsli
2022-04-03 17:26:55 -04:00

20 lines
403 B
HLSL

#ifndef __SKYBOX_DEFINES__
#define __SKYBOX_DEFINES__
struct SkyboxVertexToPixel
{
float4 screenPosition : SV_POSITION;
float3 sampleDir : DIRECTION;
};
// Struct representing a single vertex worth of data
// - This should match Vertex.h
struct SkyboxVertexShaderInput
{
float3 localPosition : POSITION;
float3 normal : NORMAL;
float3 tangent : TANGENT;
float2 uv : TEXCOORD;
};
#endif