mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
30 lines
814 B
C++
30 lines
814 B
C++
// Copyright 2016 The Chromium 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/vulkan/vulkan_handle.h"
|
|
#include "flutter/vulkan/vulkan_proc_table.h"
|
|
#include "lib/fxl/macros.h"
|
|
|
|
namespace vulkan {
|
|
|
|
bool IsDebuggingEnabled();
|
|
bool ValidationLayerInfoMessagesEnabled();
|
|
bool ValidationErrorsFatal();
|
|
|
|
std::vector<std::string> InstanceLayersToEnable(const VulkanProcTable& vk);
|
|
|
|
std::vector<std::string> DeviceLayersToEnable(
|
|
const VulkanProcTable& vk,
|
|
const VulkanHandle<VkPhysicalDevice>& physical_device);
|
|
|
|
} // namespace vulkan
|
|
|
|
#endif // FLUTTER_VULKAN_VULKAN_UTILITIES_H_
|