When I create a render target by RenderTextureDescriptor and set the bindMS with ture, I get this error:
A multisampled texture being bound to a non-multisampled sampler. Disabling in order to avoid undefined behavior. Please use Texture2DMS in the shader.
BindMS means that we don’t resolve the texture before binding it. It means taht each pixel has multiple samples so when you sample it you need to use a Texture2DMS instead of a Texture2D.
Hi I am not a coder but an artist, so I might be somewhat ignorant on this matter.
I’ve been using unity’s old post processing without problems. But now that I’ve changed to the new system I get the abovementioned error when I try to combine post processing with SteamVR.
I’m getting this error too but how do I even find out which texture is causing the issue? I have a lot of textures and just upgraded my project to 2020 with URP. The stacktrace shows absolutely no information.
for me I was using the deferred rendering path in URP and I had Anti aliasing turned on in the quality section of the pipeline asset, as soon as I turned that off it I stopped getting those errors.