diff options
Diffstat (limited to 'vulkan/tools/vkinfo.cpp')
-rw-r--r-- | vulkan/tools/vkinfo.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/vulkan/tools/vkinfo.cpp b/vulkan/tools/vkinfo.cpp index 7cf85e683e..801eca8300 100644 --- a/vulkan/tools/vkinfo.cpp +++ b/vulkan/tools/vkinfo.cpp @@ -14,18 +14,17 @@ * limitations under the License. */ -#include <algorithm> -#include <array> #include <inttypes.h> #include <stdlib.h> +#include <unistd.h> + +#include <algorithm> +#include <array> #include <sstream> #include <vector> #include <vulkan/vulkan.h> -#define LOG_TAG "vkinfo" -#include <log/log.h> - namespace { struct Options { |