mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
19 lines
350 B
HLSL
19 lines
350 B
HLSL
#ifndef URP_LIT_INPUT_INCLUDED
|
|
#define URP_LIT_INPUT_INCLUDED
|
|
|
|
#include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl"
|
|
|
|
////////////////////////////////////////
|
|
// Defines
|
|
//
|
|
#undef LIGHTMAP_ON
|
|
|
|
CBUFFER_START(UnityPerMaterial)
|
|
float4 _MainTex_ST;
|
|
half _Cutoff;
|
|
CBUFFER_END
|
|
|
|
sampler2D _MainTex;
|
|
|
|
#endif // URP_LIT_INPUT_INCLUDED
|