11 lines
181 B
Text
11 lines
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);
|
||
|
|
}
|