您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
53 行
1.3 KiB
53 行
1.3 KiB
Shader "Hidden/LightweightPipeline/Blit"
|
|
{
|
|
SubShader
|
|
{
|
|
Tags { "RenderType" = "Opaque" "RenderPipeline" = "LightweightPipeline"}
|
|
LOD 100
|
|
|
|
Pass
|
|
{
|
|
Tags { "LightMode" = "LightweightForward"}
|
|
|
|
ZTest Always ZWrite Off
|
|
|
|
HLSLPROGRAM
|
|
// Required to compile gles 2.0 with standard srp library
|
|
#pragma prefer_hlslcc gles
|
|
#pragma vertex Vertex
|
|
#pragma fragment Fragment
|
|
|
|
#include "LWRP/ShaderLibrary/Core.hlsl"
|
|
|
|
struct VertexInput
|
|
{
|
|
float4 vertex : POSITION;
|
|
float2 uv : TEXCOORD0;
|
|
};
|
|
|
|
struct VertexOutput
|
|
{
|
|
half4 pos : SV_POSITION;
|
|
half2 uv : TEXCOORD0;
|
|
};
|
|
|
|
TEXTURE2D(_BlitTex);
|
|
SAMPLER(sampler_BlitTex);
|
|
|
|
VertexOutput Vertex(VertexInput i)
|
|
{
|
|
VertexOutput o;
|
|
o.pos = TransformObjectToHClip(i.vertex.xyz);
|
|
o.uv = i.uv;
|
|
return o;
|
|
}
|
|
|
|
half4 Fragment(VertexOutput i) : SV_Target
|
|
{
|
|
half4 col = SAMPLE_TEXTURE2D(_BlitTex, sampler_BlitTex, i.uv);
|
|
return col;
|
|
}
|
|
ENDHLSL
|
|
}
|
|
}
|
|
}
|