Creative-Coding-with-DCTL / Template.dctl
Template.dctl
Raw
__DEVICE__ float3 transform(int p_Width, int p_Height, int p_X, int p_Y, float p_R, float p_G, float p_B)
{
    
    float3 rgb = {p_R, p_G, p_B};

    return rgb;
}