blob: 0347358401f208fdb03cc14e59198e16db496917 (
plain)
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
|
//TEST_IGNORE_FILE:
// This file implements the "library" code
// that both the HLSL and GLSL shaders share.
//
// This code is written in Slang (more or less
// just HLSL), and will be translated as needed
// for each of the targets.
float3 transformColor(float3 color)
{
float3 result;
result.x = sin(20.0 * (color.x + color.y));
result.y = saturate(cos(color.z * 30.0));
result.z = sin(color.x * color.y * color.z * 100.0);
result = 0.5 * (result + 1);
return result;
}
void doConditionalDiscard(float3 color)
{
if(color.x < 0.5)
discard;
}
|