diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-10-07 08:38:30 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-10-08 17:09:07 -0600 |
| commit | b91cc0a75542de2639ec2498508807d50ce8b0a9 (patch) | |
| tree | 27c32d81d6bed4a2f1e470f5c0089917251788c9 /layers/image.cpp | |
| parent | e37e32e23b87151013dfea403c3475390ca89d26 (diff) | |
| download | usermoji-b91cc0a75542de2639ec2498508807d50ce8b0a9.tar.xz | |
layers: clean up includes
Diffstat (limited to 'layers/image.cpp')
| -rw-r--r-- | layers/image.cpp | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/layers/image.cpp b/layers/image.cpp index 283e4319..0b8b242b 100644 --- a/layers/image.cpp +++ b/layers/image.cpp @@ -22,29 +22,28 @@ * DEALINGS IN THE SOFTWARE. */ +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> - -#include <iostream> -#include <string> -#include <sstream> +#include <assert.h> +#include <vector> #include <unordered_map> #include <memory> -#include <vector> +using namespace std; -#include "image.h" #include "vk_loader_platform.h" -#include "vk_layer.h" +#include "vk_dispatch_table_helper.h" +#include "vk_struct_string_helper_cpp.h" #include "vk_enum_validate_helper.h" -#include "vk_struct_validate_helper.h" -//The following is #included again to catch certain OS-specific functions being used: -#include "vk_loader_platform.h" - +#include "image.h" +#include "vk_layer_config.h" +#include "vk_layer_extension_utils.h" #include "vk_layer_table.h" #include "vk_layer_data.h" #include "vk_layer_extension_utils.h" #include "vk_layer_utils.h" +#include "vk_layer_logging.h" using namespace std; |
