Skip to content

Commit

Permalink
v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
attackgoat committed Oct 31, 2022
1 parent 83f31df commit c25c870
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.4] - Unreleased
## [0.6.4] - 2022-10-31

### Fixed

Expand Down Expand Up @@ -33,7 +33,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Changed

- Improved fullscreen experience: no extra decoration or briefly display small window
- Improved fullscreen experience: no extra decoration or briefly displayed small window
- Cursor re-displayed, if hidden, when event loop window loses focus

## [0.6.2] - 2022-10-20
Expand Down
12 changes: 6 additions & 6 deletions src/driver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_complex() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 8,
Expand Down Expand Up @@ -1290,7 +1290,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_disjoint() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 0,
Expand Down Expand Up @@ -1324,7 +1324,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_equal() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 0,
Expand All @@ -1350,7 +1350,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_overlap() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 0,
Expand Down Expand Up @@ -1415,7 +1415,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_subset() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 0,
Expand Down Expand Up @@ -1457,7 +1457,7 @@ mod tests {

#[test]
pub fn push_constant_ranges_superset() {
let res = merge_push_constant_ranges(&mut [
let res = merge_push_constant_ranges(&[
vk::PushConstantRange {
stage_flags: vk::ShaderStageFlags::VERTEX,
offset: 0,
Expand Down

0 comments on commit c25c870

Please sign in to comment.