diff options
| author | Chris Forbes <chrisforbes@google.com> | 2017-04-24 18:40:13 -0700 |
|---|---|---|
| committer | Chris Forbes <chrisf@ijw.co.nz> | 2017-04-26 07:55:08 +1200 |
| commit | dfcf2383eda567e4e3d48c57af0902a1fa6a8b81 (patch) | |
| tree | 99f112565e85dbcf295126a715141e28c0734505 | |
| parent | 286f39e1ea368e35710972e7abf464e90fd157fd (diff) | |
| download | usermoji-dfcf2383eda567e4e3d48c57af0902a1fa6a8b81.tar.xz | |
layers: Fix more VkBool32 vs bool
| -rw-r--r-- | layers/core_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 10d11629..e8d07ff4 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -2172,7 +2172,7 @@ static bool require_feature(debug_report_data *report_data, VkBool32 feature, ch return true; } -static bool require_extension(debug_report_data *report_data, VkBool32 extension, char const *extension_name) { +static bool require_extension(debug_report_data *report_data, bool extension, char const *extension_name) { if (!extension) { if (log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, __LINE__, SHADER_CHECKER_FEATURE_NOT_ENABLED, "SC", |
