-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove checks for skipIfColorRenderableNotSupportedForFormat #4179
Remove checks for skipIfColorRenderableNotSupportedForFormat #4179
Conversation
|
That's a good point. Maybe we should keep these checks and just rename it to I'll do that. I'm curious if adding |
I think adding the selectDevice for that will skip tests on compat (now the feature is never turned on in dawn compat) But all of our bots (linux desktop, android arm64 pixel 6) running compat cts actually support GL_EXT_color_buffer_float so they used to pass. |
oh man, so many issues 😭
So ... as it stands, I guess we can't enable There's a further problem. I feel like But it doesn't work. For example, we want to test That means functions like
Are just plain wrong. So is
Those questions can't be answered at from static info. I feel like we should make all of the data in For example this
Is just wrong given some formats are conditionally renderable ...sigh... |
I feel like we should do #4178 sooner rather than later |
Facepalm. I'm always too naive facing these formats issue. |
This was added when compat was expected to make rendering to f16 and f32 to be optional but it's no longer optional and so the check is not needed.
a0065fb
to
6758337
Compare
This was added when compat was expected to make rendering to f16 and f32 to be optional but it's no longer optional and so the check is not needed.
There's also a ton of changes added to render to rgba32uint via bitcast instead of rendering directly to rgba32float. I don't think I'll remove them but I will at least go update the comments in another PR.