1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Request GLSL version 3.30. (#1639)

This commit is contained in:
Sebastian Urban
2022-05-21 12:52:20 +02:00
committed by GitHub
parent 27cca111c8
commit 5687aa6b50
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ impl RotatingTriangle {
let shader_version = if cfg!(target_arch = "wasm32") {
"#version 300 es"
} else {
"#version 410"
"#version 330"
};
unsafe {