exeldro / obs-shaderfilter

OBS Studio filter for applying an arbitrary shader to a source.
GNU General Public License v2.0
377 stars 39 forks source link

Bad types in shader crashes OBS #29

Open filiphanes opened 9 months ago

filiphanes commented 9 months ago

Hi, For example this shader with void instead of float4 type crashes OBS immediately:

void mainImage(VertData v_in) : TARGET
{
    return image.Sample(textureSampler, v_in.uv);
}