@@ -435,11 +435,11 @@ There were a lot of additions in this update and a small breaking change.
435
435
436
436
``` rust
437
437
let v = vec4 (1.0 , 2.0 , 3.0 , 4.0 );
438
-
438
+
439
439
// Reverse elements of `v`.
440
440
// If SIMD is supported this will use a vector shuffle.
441
441
let wzyx = v . wzyx ();
442
-
442
+
443
443
let yzw = v . yzw (); // Swizzle the yzw elements of `v` into a `Vec3`
444
444
let xy = v . xy (); // You can swizzle from a `Vec4` to a `Vec2`
445
445
let yyxx = xy . yyxx (); // And back again
@@ -668,6 +668,23 @@ on the module's [repository][Proton-Media-Converter-Github]
668
668
[ Proton-Github ] : https://github.com/ValveSoftware/Proton
669
669
[ Proton-Media-Converter-Github ] : https://github.com/ValveSoftware/Proton/tree/proton_5.13/media-converter
670
670
671
+ ### [ ggez] [ ggez-github ] 0.6 call for contributions
672
+
673
+ The ` ggez ` game library traditionally tries to make at least one release
674
+ at the end of each year, and that is fast approaching. While the
675
+ graphics engine rewrite is still a work in progress, there's plenty of
676
+ other useful updates to be made. Bugfixes, dependency updates and other
677
+ ergonomic fixes are all on the table. A lot of work has already been
678
+ done: removing ` nalgebra ` from the public API in favor of just using
679
+ ` mint ` , re-working some dependencies to improve build times, and
680
+ updating and cleaning up a pile of minor issues. However, there's still
681
+ about a hundred accumulated bugs and PR's to triage and figure out, and
682
+ a lot of testing to do. Please help! The release checklist is
683
+ available [ here] [ ggez-release-checklist ] .
684
+
685
+ [ ggez-github ] : https://github.com/ggez/ggez/
686
+ [ ggez-release-checklist ] : https://github.com/ggez/ggez/milestone/6
687
+
671
688
## Popular Workgroup Issues in Github
672
689
673
690
<!-- Up to 10 links to interesting issues -->
0 commit comments