mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Lowe multisampling in examples from 8 to 4
Closes https://github.com/emilk/egui/issues/2658
This commit is contained in:
@@ -9,7 +9,7 @@ use std::sync::Arc;
|
||||
fn main() -> Result<(), eframe::Error> {
|
||||
let options = eframe::NativeOptions {
|
||||
initial_window_size: Some(egui::vec2(350.0, 380.0)),
|
||||
multisampling: 8,
|
||||
multisampling: 4,
|
||||
renderer: eframe::Renderer::Glow,
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
@@ -7,7 +7,7 @@ use eframe::egui;
|
||||
fn main() -> Result<(), eframe::Error> {
|
||||
let options = eframe::NativeOptions {
|
||||
initial_window_size: Some(egui::vec2(550.0, 610.0)),
|
||||
multisampling: 8,
|
||||
multisampling: 4,
|
||||
renderer: eframe::Renderer::Glow,
|
||||
depth_buffer: 24,
|
||||
..Default::default()
|
||||
|
||||
Reference in New Issue
Block a user