procedural-3d-engine/shaders/slang/raytracingcallable/callable2.slang
2025-05-18 10:38:49 +02:00

11 lines
No EOL
181 B
Text

/* Copyright (c) 2025, Sascha Willems
*
* SPDX-License-Identifier: MIT
*
*/
[shader("callable")]
void callableMain(inout float3 outColor)
{
outColor = float3(0.0, 1.0, 0.0);
}