https://github.com/shader-slang/slang
Raw File
Tip revision: af84d85799758234110fc42f0ba5c771dacb5fe3 authored by Tim Foley on 07 February 2020, 16:45:32 UTC
Change handling of strings for HLSL/GLSL targets (#1204)
Tip revision: af84d85
imported-parameters.slang
//TEST_IGNORE_FILE:

// We are declaring the uniform shader parameters
// in this imported file, to ensure that they are
// emitted correctly.

cbuffer Uniforms
{
	float4x4 modelViewProjection;
};

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;
}
back to top