-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Clean up Fetch code #4800
Commits on May 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5b4edee - Browse repository at this point
Copy the full SHA 5b4edeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 08178ac - Browse repository at this point
Copy the full SHA 08178acView commit details -
Configuration menu - View commit details
-
Copy full SHA for 550ebfe - Browse repository at this point
Copy the full SHA 550ebfeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 24c6d59 - Browse repository at this point
Copy the full SHA 24c6d59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 729d174 - Browse repository at this point
Copy the full SHA 729d174View commit details
Commits on May 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for a925fc3 - Browse repository at this point
Copy the full SHA a925fc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed0c1a3 - Browse repository at this point
Copy the full SHA ed0c1a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6cfcbcc - Browse repository at this point
Copy the full SHA 6cfcbccView commit details
Commits on May 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for cac2927 - Browse repository at this point
Copy the full SHA cac2927View commit details
Commits on May 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f1b4da5 - Browse repository at this point
Copy the full SHA f1b4da5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 389477f - Browse repository at this point
Copy the full SHA 389477fView commit details
Commits on May 31, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 95f57d7 - Browse repository at this point
Copy the full SHA 95f57d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8fef6c8 - Browse repository at this point
Copy the full SHA 8fef6c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91eda72 - Browse repository at this point
Copy the full SHA 91eda72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ea8e34 - Browse repository at this point
Copy the full SHA 4ea8e34View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fbe9ea - Browse repository at this point
Copy the full SHA 3fbe9eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 637e981 - Browse repository at this point
Copy the full SHA 637e981View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b44be9 - Browse repository at this point
Copy the full SHA 7b44be9View commit details
Commits on Jun 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9392d09 - Browse repository at this point
Copy the full SHA 9392d09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 255c481 - Browse repository at this point
Copy the full SHA 255c481View commit details
Commits on Jun 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d96461f - Browse repository at this point
Copy the full SHA d96461fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c04ee45 - Browse repository at this point
Copy the full SHA c04ee45View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed72c4c - Browse repository at this point
Copy the full SHA ed72c4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d27afc - Browse repository at this point
Copy the full SHA 4d27afcView commit details
Commits on Jun 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 50b52ae - Browse repository at this point
Copy the full SHA 50b52aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 49ae4b6 - Browse repository at this point
Copy the full SHA 49ae4b6View commit details
Commits on Jun 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 1789404 - Browse repository at this point
Copy the full SHA 1789404View commit details
Commits on Jun 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4ca8881 - Browse repository at this point
Copy the full SHA 4ca8881View commit details
Commits on Jul 2, 2022
-
Documenting
BufferVec
. (bevyengine#4673)# Objective Documents the `BufferVec` render resource. `BufferVec` is a fairly low level object, that will likely be managed by a higher level API (e.g. through [`encase`](bevyengine#4272)) in the future. For now, since it is still used by some simple example crates (e.g. [bevy-vertex-pulling](https://github.com/superdump/bevy-vertex-pulling)), it will be helpful to provide some simple documentation on what `BufferVec` does. ## Solution I looked through Discord discussion on `BufferVec`, and found [a comment](https://discord.com/channels/691052431525675048/953222550568173580/956596218857918464 ) by @superdump to be particularly helpful, in the general discussion around `encase`. I have taken care to clarify where the data is stored (host-side), when the device-side buffer is created (through calls to `reserve`), and when data writes from host to device are scheduled (using `write_buffer` calls). --- ## Changelog - Added doc string for `BufferVec` and two of its methods: `reserve` and `write_buffer`. Co-authored-by: Brian Merchant <bhmerchant@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 255e306 - Browse repository at this point
Copy the full SHA 255e306View commit details -
Fix Events example link (bevyengine#5126)
The `crate` intermediate directory is missing from the path, which currently leads to 404.
Configuration menu - View commit details
-
Copy full SHA for 696a187 - Browse repository at this point
Copy the full SHA 696a187View commit details -
Update
ExactSizeIterator
impl to support archetypal filters (With, ……Without) (bevyengine#5124) # Objective - Fixes bevyengine#3142 ## Solution - Done according to bevyengine#3142 - Created new marker trait `ArchetypeFilter` - Implement said trait to: - `With<T>` - `Without<T>` - tuples containing only types that implement `ArchetypeFilter`, from 0 to 15 elements - `Or<T>` where T is a tuple as described previously - Changed `ExactSizeIterator` impl to include a new generic that must implement `WorldQuery` and `ArchetypeFilter` - Added new tests --- ## Changelog ### Added - `Query`s with archetypal filters can now use `.iter().len()` to get the exact size of the iterator.
Configuration menu - View commit details
-
Copy full SHA for d1e8773 - Browse repository at this point
Copy the full SHA d1e8773View commit details -
Wider ECS Benchmarks (bevyengine#5123)
# Objective As a part of evaluating bevyengine#4800, at the behest of @cart, it was noted that the ECS microbenchmarks all focus on singular component queries, whereas in reality most systems will have wider queries with multiple components in each. ## Solution Use const generics to add wider variants of existing benchmarks.
Configuration menu - View commit details
-
Copy full SHA for ba28b0d - Browse repository at this point
Copy the full SHA ba28b0dView commit details -
fix resource not found error message (bevyengine#5128)
There are some outdated error messages for when a resource is not found. It references `add_resource` and `add_non_send_resource` which were renamed to `insert_resource` and `insert_non_send_resource`.
Configuration menu - View commit details
-
Copy full SHA for cce14dd - Browse repository at this point
Copy the full SHA cce14ddView commit details -
Move texture sample out of branch in prepare_normal (bevyengine#5129)
# Objective This fixes bevyengine#5127 ## Solution - Moved texture sample out of branch in `prepare_normal()`. Co-authored-by: DGriffin91 <github@dgdigital.net>
Configuration menu - View commit details
-
Copy full SHA for da59bbd - Browse repository at this point
Copy the full SHA da59bbdView commit details -
Fix typos in bevy_reflect readme (bevyengine#5134)
# Objective Fix some typos in bevy_reflect's readme ## Solution - Change `Foo`'s `d` field to be of type `Vec<Baz>` - Format `&dyn Reflect` to be monospace
Configuration menu - View commit details
-
Copy full SHA for 5bc5adb - Browse repository at this point
Copy the full SHA 5bc5adbView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa04589 - Browse repository at this point
Copy the full SHA aa04589View commit details -
Configuration menu - View commit details
-
Copy full SHA for b32681c - Browse repository at this point
Copy the full SHA b32681cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 38f5ea4 - Browse repository at this point
Copy the full SHA 38f5ea4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 815072f - Browse repository at this point
Copy the full SHA 815072fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dbf1c9 - Browse repository at this point
Copy the full SHA 0dbf1c9View commit details
Commits on Oct 24, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 44c8f86 - Browse repository at this point
Copy the full SHA 44c8f86View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb2c6a4 - Browse repository at this point
Copy the full SHA eb2c6a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f794ed - Browse repository at this point
Copy the full SHA 7f794edView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c31e05 - Browse repository at this point
Copy the full SHA 2c31e05View commit details
Commits on Oct 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 24b0b99 - Browse repository at this point
Copy the full SHA 24b0b99View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2832c04 - Browse repository at this point
Copy the full SHA 2832c04View commit details -
Configuration menu - View commit details
-
Copy full SHA for 659f644 - Browse repository at this point
Copy the full SHA 659f644View commit details -
Configuration menu - View commit details
-
Copy full SHA for 92cc6e1 - Browse repository at this point
Copy the full SHA 92cc6e1View commit details
Commits on Oct 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8d1beee - Browse repository at this point
Copy the full SHA 8d1beeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 47ad0d1 - Browse repository at this point
Copy the full SHA 47ad0d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f9f568 - Browse repository at this point
Copy the full SHA 8f9f568View commit details