#Issues running an audio visualizer crate

8 messages · Page 1 of 1 (latest)

uncut flax
#

This is the crate I'm referring to: https://github.com/Rahix/visualizer2.git
I want to run the noambition visualizer sequence. I type in the terminal: cargo run --release --bin noambition and this is the output I'm getting:

     Running `target/release/noambition`
Oh noez! Panic! 💥
Message:  called `Result::unwrap()` on an `Err` value: GlutinCreationError(CreationErrors([OpenGlVersionNotSupported, OsError("GL context creation failed")]))
Location: noambition/src/main.rs:184

Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.

With rust_backtrace set:

#
Message:  called `Result::unwrap()` on an `Err` value: GlutinCreationError(CreationErrors([OpenGlVersionNotSupported, OsError("GL context creation failed")]))
Location: noambition/src/main.rs:184

                          (9 post panic frames hidden)                          
 9: noambition::main::ha0eb12316e0aedbf
    at <unknown source file>
10: std::sys_common::backtrace::__rust_begin_short_backtrace::h6d261884a638593b
    at <unknown source file>
11: std::rt::lang_start::{{closure}}::h4268596f6323fd94
    at <unknown source file>
12: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h9ab31282e87f134a
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/core/src/ops/function.rs:606
13: std::panicking::try::do_call::h42ddf5b01d0b4bc7
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panicking.rs:483
14: std::panicking::try::hfb70320d7386c61a
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panicking.rs:447
15: std::panic::catch_unwind::h978c9edbad2bb4d4
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panic.rs:137
16: std::rt::lang_start_internal::{{closure}}::h04ede5bd2f26b553
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/rt.rs:148
17: std::panicking::try::do_call::ha6b9da35a0885c93
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panicking.rs:483
18: std::panicking::try::h3325520cab3a642e
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panicking.rs:447
19: std::panic::catch_unwind::h160beec6f047175b
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/panic.rs:137
20: std::rt::lang_start_internal::h79190e3a877a769d
    at /rustc/fc594f15669680fa70d255faec3ca3fb507c3405/library/std/src/rt.rs:148
21: main
    at <unknown source file>
22: __libc_start_main
    at <unknown source file>
23: _start
    at <unknown source file>
steel storm
#

OpenGlVersionNotSupported is probably all there is to it

#

your computer doesn't have GL drivers supporting the GL version the program needs

uncut flax
steel storm
#

sorry, I don't know anything specific about GL installation issues.

#

but it will probably involve drivers for your graphics card, not generic libraries like glew

#

(if it is in fact a version problem and not something mislabeled as one)