1
0
Fork 0

Update vizia to fix redrawing after resizing

Everything's still very laggy because we're processing 16 resize events
per frame, we need some way to debounce events until the end of the
frame in vizia.
This commit is contained in:
Robbert van der Helm 2022-03-28 13:37:34 +02:00
parent b9b7903108
commit b56c9892c0

8
Cargo.lock generated
View file

@ -3625,7 +3625,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "vizia"
version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#cb99d4dc94376b395efbf139e77ec060580f54b0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#50b8f6e8438fd0eaa3b0911839d768bd70756c49"
dependencies = [
"vizia_baseview",
"vizia_core",
@ -3634,7 +3634,7 @@ dependencies = [
[[package]]
name = "vizia_baseview"
version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#cb99d4dc94376b395efbf139e77ec060580f54b0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#50b8f6e8438fd0eaa3b0911839d768bd70756c49"
dependencies = [
"baseview 0.1.0 (git+https://github.com/robbert-vdh/baseview.git?branch=feature/resize)",
"femtovg",
@ -3646,7 +3646,7 @@ dependencies = [
[[package]]
name = "vizia_core"
version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#cb99d4dc94376b395efbf139e77ec060580f54b0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#50b8f6e8438fd0eaa3b0911839d768bd70756c49"
dependencies = [
"bitflags",
"copypasta",
@ -3669,7 +3669,7 @@ dependencies = [
[[package]]
name = "vizia_derive"
version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#cb99d4dc94376b395efbf139e77ec060580f54b0"
source = "git+https://github.com/robbert-vdh/vizia.git?branch=patched#50b8f6e8438fd0eaa3b0911839d768bd70756c49"
dependencies = [
"proc-macro2",
"quote",