Running bevy on an NVIDIA GeForce GT 635M #10089
Replies: 3 comments 1 reply
-
That is a warning, SSAO is not a required rendering feature. |
Beta Was this translation helpful? Give feedback.
-
Hmm, I should've pasted the whole output: 2023-10-11T22:01:44.707915Z INFO bevy_winit::system: Creating new window "App" (0v0)
2023-10-11T22:01:46.083603Z ERROR wgpu_hal::vulkan::instance: enumerate_adapters: Initialization of an object has failed
2023-10-11T22:01:46.739627Z INFO bevy_render::renderer: AdapterInfo { name: "NVIDIA GeForce GT 635M", vendor: 4318, device: 3555, device_type: DiscreteGpu, driver: "", driver_info: "", backend: Dx12 }
2023-10-11T22:01:47.360188Z WARN bevy_pbr::ssao: ScreenSpaceAmbientOcclusionPlugin not loaded. GPU lacks support: Limits::max_storage_textures_per_shader_stage is less than 5.
2023-10-11T22:01:47.566687Z INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Windows 10 Home", kernel: "19045", cpu: "Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz", core_count: "4", memory: "7.9 GiB" }
error: process didn't exit successfully: `target\debug\examples\sprite_sheet.exe` (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION) If it helps anyone, exception in the debugger:
This is from a call to profiling::scope!("IDXGISwapchain3::Present"); in wgpu_hal/src/dx12/mod.rs: 891 As an unhelpful aside, this machine has two video cards: embedded and discrete. The embedded (Intel) GPU works fine (on linux). Is there a way to force GPU selection? |
Beta Was this translation helpful? Give feedback.
-
Interestingly this works fine in wsl using the wayland backend and the nVidia linux driver. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Had a quick search of the Q&A and couldn't find anything! Anyway, just started looking at using bevy and fallen at the first hurdle. I don't seem to be able to get the examples to run (not actually tried all of them). Tried the
sprite
andsprite_sheet
examples. Both will display the app window and then panic. My laptop is pretty old and has an nVidia GeForce GT 635M which appears to be unsupported (using DX12 backend on Windows 10):Am I deluding myself trying to use this ~10 year old laptop? Do I need to get off my bum and fetch something more up to date..?
Beta Was this translation helpful? Give feedback.
All reactions