Meshes become very dark when using MSAA #6299
Unanswered
jondavis847
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am using wgpu to render basic 3d meshes. I noticed that when I increase the sample_count from 1 to 4 for geometry multisampling, the scene becomes much darker. I'll note that I'm resolving to a texture created by the Iced crates Shader widget, but I handle all the wgpu pipeline and render pass creation. Things I've tried with no luck:
This also only seems to happen when using color values < 1.0. For example, below is an image rendering a pure white cuboid in front of a pure red sphere. (4 sample_count on left, 1 sample_count on right). It looks about the same.
This is the same image but with 0.7 times the mesh color. The MSAA picture is noticeably darker.
This is with 0.3 times the mesh color:
Anything else I should be trying?
Beta Was this translation helpful? Give feedback.
All reactions