forked from ValveSoftware/steamos-compositor
-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
layer: Send VK_ERROR_OUT_OF_DATE when window size changes on X11
As currentExtent will have changed...
- Loading branch information
Showing
2 changed files
with
113 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
#pragma once | ||
|
||
#include <vulkan/vulkan_core.h> | ||
|
||
inline bool operator == ( | ||
const VkImageSubresourceRange& a, | ||
const VkImageSubresourceRange& b) { | ||
return a.aspectMask == b.aspectMask | ||
&& a.baseMipLevel == b.baseMipLevel | ||
&& a.levelCount == b.levelCount | ||
&& a.baseArrayLayer == b.baseArrayLayer | ||
&& a.layerCount == b.layerCount; | ||
} | ||
|
||
|
||
inline bool operator != ( | ||
const VkImageSubresourceRange& a, | ||
const VkImageSubresourceRange& b) { | ||
return !operator == (a, b); | ||
} | ||
|
||
|
||
inline bool operator == ( | ||
const VkImageSubresourceLayers& a, | ||
const VkImageSubresourceLayers& b) { | ||
return a.aspectMask == b.aspectMask | ||
&& a.mipLevel == b.mipLevel | ||
&& a.baseArrayLayer == b.baseArrayLayer | ||
&& a.layerCount == b.layerCount; | ||
} | ||
|
||
|
||
inline bool operator != ( | ||
const VkImageSubresourceLayers& a, | ||
const VkImageSubresourceLayers& b) { | ||
return !operator == (a, b); | ||
} | ||
|
||
|
||
inline bool operator == (VkExtent3D a, VkExtent3D b) { | ||
return a.width == b.width | ||
&& a.height == b.height | ||
&& a.depth == b.depth; | ||
} | ||
|
||
|
||
inline bool operator != (VkExtent3D a, VkExtent3D b) { | ||
return a.width != b.width | ||
|| a.height != b.height | ||
|| a.depth != b.depth; | ||
} | ||
|
||
|
||
inline bool operator == (VkExtent2D a, VkExtent2D b) { | ||
return a.width == b.width | ||
&& a.height == b.height; | ||
} | ||
|
||
|
||
inline bool operator != (VkExtent2D a, VkExtent2D b) { | ||
return a.width != b.width | ||
|| a.height != b.height; | ||
} | ||
|
||
|
||
inline bool operator == (VkOffset3D a, VkOffset3D b) { | ||
return a.x == b.x | ||
&& a.y == b.y | ||
&& a.z == b.z; | ||
} | ||
|
||
|
||
inline bool operator != (VkOffset3D a, VkOffset3D b) { | ||
return a.x != b.x | ||
|| a.y != b.y | ||
|| a.z != b.z; | ||
} | ||
|
||
|
||
inline bool operator == (VkOffset2D a, VkOffset2D b) { | ||
return a.x == b.x | ||
&& a.y == b.y; | ||
} | ||
|
||
|
||
inline bool operator != (VkOffset2D a, VkOffset2D b) { | ||
return a.x != b.x | ||
|| a.y != b.y; | ||
} | ||
|