rust-windowing/glutin

Can't create context on old Win 10 Laptop

Melchizedek6809 opened this issue · 1 comments

When trying to run the example it panics because it can't create an ES context (I suppose it tried creating a GL one before).
The Device in question is an X220t with an i5-2520M / HD Graphics 3000 running up-to date Windows 10.
The same machine can create/run an OpenGL 3.1 context with old glutin just fine, so the hardware/driver should be fine.

$ cargo run --example window
    Blocking waiting for file lock on build directory
   Compiling glutin_examples v0.1.3 (C:\Users\benny\src\glutin\glutin_examples)
    Finished dev [unoptimized + debuginfo] target(s) in 3.16s
     Running `target\debug\examples\window.exe`
Picked a config with 0 samples
thread 'main' panicked at 'failed to create context: Error { raw_code: None, raw_os_message: None, kind: NotSupported("extension to create ES context with wgl is not present") }', glutin_examples\src\lib.rs:74:18
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: process didn't exit successfully: `target\debug\examples\window.exe` (exit code: 101)

I think this was resolved.