forked from przemyslawzaworski/Unity3D-CG-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtriangle.shader
49 lines (46 loc) · 960 Bytes
/
triangle.shader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Shader "Triangle"
{
SubShader
{
Pass
{
Cull Off
CGPROGRAM
#pragma vertex vertex_shader
#pragma fragment pixel_shader
struct structure
{
float4 vertex : SV_POSITION;
float3 color : COLOR;
};
structure vertex_shader(uint id : SV_VertexID)
{
structure vs;
float4 vertices[3];
vertices[0] = float4( 0.0,-0.5,0.001,1.0);
vertices[1] = float4( 0.5, 0.5,0.001,1.0);
vertices[2] = float4(-0.5, 0.5,0.001,1.0);
float3 colors[3];
colors[0] = float3(1,0,0);
colors[1] = float3(0,1,0);
colors[2] = float3(0,0,1);
if (id>2)
{
vs.vertex = float4(0.0, -0.5, 0.001, 1.0);
vs.color = float3(1.0, 0.0, 0.0);
}
else
{
vs.vertex = vertices[id];
vs.color = colors[id];
}
return vs;
}
void pixel_shader(in structure ps, out float4 fragColor:SV_Target)
{
fragColor = float4(ps.color,1);
}
ENDCG
}
}
}