Browse Source

Release egui_glow 0.18.1 - remove unnecessary calls to gl.get_error

pull/1620/head
Emil Ernerfeldt 3 years ago
parent
commit
d69ce546fa
  1. 2
      Cargo.lock
  2. 3
      egui_glow/CHANGELOG.md
  3. 2
      egui_glow/Cargo.toml

2
Cargo.lock

@ -1187,7 +1187,7 @@ dependencies = [
[[package]] [[package]]
name = "egui_glow" name = "egui_glow"
version = "0.18.0" version = "0.18.1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"egui", "egui",

3
egui_glow/CHANGELOG.md

@ -3,6 +3,9 @@ All notable changes to the `egui_glow` integration will be noted in this file.
## Unreleased ## Unreleased
## 0.18.1 - 2022-05-05
* Remove calls to `gl.get_error` in release builds to speed up rendering ([#1583](https://github.com/emilk/egui/pull/1583)). * Remove calls to `gl.get_error` in release builds to speed up rendering ([#1583](https://github.com/emilk/egui/pull/1583)).

2
egui_glow/Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "egui_glow" name = "egui_glow"
version = "0.18.0" version = "0.18.1"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"] authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Bindings for using egui natively using the glow library" description = "Bindings for using egui natively using the glow library"
edition = "2021" edition = "2021"

Loading…
Cancel
Save