Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
c89e471
chore: reordering impls
pietrosophya Mar 23, 2024
cd15c4b
chore: moving AppExit event handling to the main event loop
pietrosophya Mar 23, 2024
0359221
chore: check RequestRedraw events inside AboutToWait, before using it
pietrosophya Mar 23, 2024
8a78993
chore: create new windows every loop
pietrosophya Mar 23, 2024
66cc0e2
chore: persist UpdateMode
pietrosophya Mar 23, 2024
4f0edcb
fix: refreshing the ControlFlow as the last step of AboutToWait, read…
pietrosophya Mar 23, 2024
a24b520
fix: redrawing or updating the app depending on current conditions
pietrosophya Mar 23, 2024
4d8f9a3
chore: fmt ❤️
pietrosophya Mar 23, 2024
20cf937
fix: fix low_power example
pietrosophya Mar 23, 2024
64b40d8
fix: fix compilation
pietrosophya Mar 23, 2024
6bdb183
chore: fix CI
pietrosophya Mar 23, 2024
ca2de4f
chore: typo
pietrosophya Mar 23, 2024
f2b6e99
fix: remove extra runner_state.last_update assignment
pietrosophya Mar 24, 2024
6b487f2
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Mar 30, 2024
cc5ae79
chore: merged with main
pietrosophya Apr 2, 2024
9488686
fix android
mockersf Apr 2, 2024
7a70e51
Merge pull request #1 from mockersf/rewrite-winit-loop-fix-android
pietrosophya Apr 2, 2024
29e51a0
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 3, 2024
4240a62
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 4, 2024
b821245
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 4, 2024
fd258bd
fix: fixed android loop
pietrosophya Apr 4, 2024
70b85db
fix: move AppExit handling at the end of the loop
pietrosophya Apr 7, 2024
e1c0cd5
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 7, 2024
1b9bdb6
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 7, 2024
c57ab33
fix: fixed continuous mode for Windows
pietrosophya Apr 8, 2024
749a402
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 8, 2024
9fe2586
fix: fixed continuous mode for Windows
pietrosophya Apr 8, 2024
237d2bd
fix: fixed continuous mode for Windows
pietrosophya Apr 8, 2024
f2c7043
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 9, 2024
ba0c157
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 10, 2024
6a4c735
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 11, 2024
9ef4e71
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 12, 2024
9ddc439
Merge branch 'bevyengine:main' into fix/rewrite-winit-loop
pietrosophya Apr 13, 2024
b05ee57
Merge branch 'bevyengine:main' into fix/rewrite-winit-loop
pietrosophya Apr 14, 2024
4042501
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 16, 2024
96d2c6d
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 17, 2024
31ed8cd
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 22, 2024
48a164b
fix: fixed conditions to check the next loop state
pietrosophya Apr 22, 2024
6bcd320
chore: merged with main
pietrosophya Apr 22, 2024
38451e7
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 22, 2024
d0c1568
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 23, 2024
f55736e
fix: decoupling should_update and redraw_requested
pietrosophya Apr 23, 2024
7ed7462
chore: fix CI
pietrosophya Apr 23, 2024
1b4fa42
fix: fixed activity state in android
pietrosophya Apr 24, 2024
e70140a
chore: merged with main
pietrosophya Apr 24, 2024
b38e0e6
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 25, 2024
c32ab55
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 26, 2024
5d8820e
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 26, 2024
c003a64
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 27, 2024
3219c0a
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 28, 2024
b638f06
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya Apr 30, 2024
67f4bdd
chore: merged with main
pietrosophya May 2, 2024
9869943
Merge branch 'main' into fix/rewrite-winit-loop
pietrosophya May 2, 2024
da706bb
fix: restored missing unwrap
pietrosophya May 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/bevy_winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bevy_derive = { path = "../bevy_derive", version = "0.14.0-dev" }
bevy_ecs = { path = "../bevy_ecs", version = "0.14.0-dev" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.14.0-dev" }
bevy_input = { path = "../bevy_input", version = "0.14.0-dev" }
bevy_log = { path = "../bevy_log", version = "0.14.0-dev" }
bevy_math = { path = "../bevy_math", version = "0.14.0-dev" }
bevy_reflect = { path = "../bevy_reflect", version = "0.14.0-dev" }
bevy_window = { path = "../bevy_window", version = "0.14.0-dev" }
Expand All @@ -36,6 +37,7 @@ accesskit_winit = { version = "0.17", default-features = false, features = [
"rwh_06",
] }
approx = { version = "0.5", default-features = false }
cfg-if = "1.0"
raw-window-handle = "0.6"
serde = { version = "1.0", features = ["derive"], optional = true }

Expand Down
Loading