-
Notifications
You must be signed in to change notification settings - Fork 1k
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
“Downlevel flags VIEW_FORMATS are required but not supported on the device.” #3755
Comments
WebGPU added requirement for being able to specify the view format and wgpu checks against that now. Blue engine probably had an older version of wgpu before that didn't have this requirement yet. That said, the only place where this feature isn't supported is on wgpu's GLES & WebGL backend. On linux you should always use Vulkan whenever possible. |
On linux you should always use Vulkan whenever possible.
So if I understood correctly, if blue engine configured WGPU to use Vulkan backend, then I shouldn't get this issue?
------- Original Message -------
…On Sunday, May 7th, 2023 at 11:55 PM, Andreas Reich ***@***.***> wrote:
WebGPU added requirement for being able to specify the view format and wgpu checks against that now. Blue engine probably had an older version of wgpu before that didn't have this requirement yet.
That said, the only place where this feature isn't supported is on wgpu's GLES & WebGL backend. On linux you should always use Vulkan whenever possible.
In any case, this would be a bug with blue engine for not picking the correct backend and/or requiring this feature when they also want to suport GLES/WebGL (?, don't know blue engine at all)
—
Reply to this email directly, [view it on GitHub](#3755 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AG7P2BXA23FDYQ4RENRQPOLXE6SUTANCNFSM6AAAAAAXY2LNIE).
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Yep. Depending on the engine chooses the backend, the |
@Wumpf thanks for helping with this! It looks like there is nothing for us to do here; closing. |
I am using (Arch)Linux and I am currently using the Blue Engine
And I have a very simple project:
As soon as I add this line
let mut engine = Engine::new();
it "panics" with this error message:"Downlevel flags VIEW_FORMATS are required but not supported on the device." It looks like I might need to disable the
VIEW_FORMATS
flag or something? In the previous version of blue engine it would work fine on the exact same computer and OS but the current version has this issue.I got another person with a different computer to run the project and it works fine for him so not too sure why all of a sudden its not working for me?
I am using amdgpu drivers, not raedeon drivers.
The text was updated successfully, but these errors were encountered: