flutter_flutter/engine/src/flutter/vulkan/vulkan_utilities.h
Guruji Panda 0ffadc0eaa Fix include paths to help building flutter runner for Fuchsia in Google3. (flutter/engine#18840)
Include header file without absolute path if the header file belongs to
the same directory as source file.
2020-06-06 16:05:04 -07:00

31 lines
874 B
C++

// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_VULKAN_VULKAN_UTILITIES_H_
#define FLUTTER_VULKAN_VULKAN_UTILITIES_H_
#include <string>
#include <vector>
#include "flutter/fml/macros.h"
#include "vulkan_handle.h"
#include "vulkan_proc_table.h"
namespace vulkan {
bool ValidationLayerInfoMessagesEnabled();
bool ValidationErrorsFatal();
std::vector<std::string> InstanceLayersToEnable(const VulkanProcTable& vk,
bool enable_validation_layers);
std::vector<std::string> DeviceLayersToEnable(
const VulkanProcTable& vk,
const VulkanHandle<VkPhysicalDevice>& physical_device,
bool enable_validation_layers);
} // namespace vulkan
#endif // FLUTTER_VULKAN_VULKAN_UTILITIES_H_