mirror of
https://github.com/flutter/flutter.git
synced 2026-02-04 01:56:32 +08:00
38 lines
987 B
C++
38 lines
987 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_DEBUG_REPORT_H_
|
|
#define FLUTTER_VULKAN_VULKAN_DEBUG_REPORT_H_
|
|
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/vulkan/procs/vulkan_handle.h"
|
|
#include "flutter/vulkan/procs/vulkan_interface.h"
|
|
#include "flutter/vulkan/procs/vulkan_proc_table.h"
|
|
|
|
namespace vulkan {
|
|
|
|
class VulkanDebugReport {
|
|
public:
|
|
static std::string DebugExtensionName();
|
|
|
|
VulkanDebugReport(const VulkanProcTable& vk,
|
|
const VulkanHandle<VkInstance>& application);
|
|
|
|
~VulkanDebugReport();
|
|
|
|
bool IsValid() const;
|
|
|
|
private:
|
|
const VulkanProcTable& vk_;
|
|
const VulkanHandle<VkInstance>& application_;
|
|
VulkanHandle<VkDebugReportCallbackEXT> handle_;
|
|
bool valid_;
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(VulkanDebugReport);
|
|
};
|
|
|
|
} // namespace vulkan
|
|
|
|
#endif // FLUTTER_VULKAN_VULKAN_DEBUG_REPORT_H_
|