diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2017-01-17 09:14:36 -0700 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2017-01-17 14:58:38 -0700 |
| commit | 44f33c7105afa0963020fd347d26549554d1b7c4 (patch) | |
| tree | a6a4fd7f0f1ab8c98fc95686078cab6f3283998b | |
| parent | 4a4d70b99f38231f495a232da13a82e72850e963 (diff) | |
| download | usermoji-44f33c7105afa0963020fd347d26549554d1b7c4.tar.xz | |
layers: Move image struct into cv_types header
To allow external access to image_state structs.
Change-Id: I3af02068c81b32df68b56c4e210cb2a5b2000efa
| -rw-r--r-- | layers/core_validation.h | 5 | ||||
| -rw-r--r-- | layers/core_validation_types.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/layers/core_validation.h b/layers/core_validation.h index f1185f3c..fe850ec3 100644 --- a/layers/core_validation.h +++ b/layers/core_validation.h @@ -139,11 +139,6 @@ struct GENERIC_HEADER { const void *pNext; }; -struct IMAGE_LAYOUT_NODE { - VkImageLayout layout; - VkFormat format; -}; - class PHYS_DEV_PROPERTIES_NODE { public: VkPhysicalDeviceProperties properties; diff --git a/layers/core_validation_types.h b/layers/core_validation_types.h index d0c05c7f..2523be3a 100644 --- a/layers/core_validation_types.h +++ b/layers/core_validation_types.h @@ -640,6 +640,11 @@ struct CB_SUBMISSION { VkFence fence; }; +struct IMAGE_LAYOUT_NODE { + VkImageLayout layout; + VkFormat format; +}; + // Fwd declarations of layer_data and helpers to look-up/validate state from layer_data maps namespace core_validation { struct layer_data; |
