https://github.com/shader-slang/slang
Raw File
Tip revision: e712ebd93aa9a2845bde3ea541aaa7cd415548b7 authored by Yong He on 02 November 2023, 05:49:30 UTC
Add mnemonic parsing for `intrinsic_type` modifier. (#3306)
Tip revision: e712ebd
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