You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
/*
|
|
* Copyright 2020 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef VkTestHelper_DEFINED
|
|
#define VkTestHelper_DEFINED
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
#include "include/gpu/vk/GrVkBackendContext.h"
|
|
#include "include/gpu/vk/GrVkExtensions.h"
|
|
|
|
class GrDirectContext;
|
|
class SkSurface;
|
|
|
|
#define DECLARE_VK_PROC(name) PFN_vk##name fVk##name
|
|
|
|
class VkTestHelper {
|
|
public:
|
|
VkTestHelper(bool isProtected) : fIsProtected(isProtected) {}
|
|
|
|
~VkTestHelper() {
|
|
this->cleanup();
|
|
}
|
|
|
|
bool init();
|
|
|
|
GrDirectContext* directContext() { return fDirectContext.get(); }
|
|
|
|
private:
|
|
void cleanup();
|
|
|
|
DECLARE_VK_PROC(DestroyInstance);
|
|
DECLARE_VK_PROC(DeviceWaitIdle);
|
|
DECLARE_VK_PROC(DestroyDevice);
|
|
|
|
DECLARE_VK_PROC(GetPhysicalDeviceFormatProperties);
|
|
DECLARE_VK_PROC(GetPhysicalDeviceMemoryProperties);
|
|
|
|
DECLARE_VK_PROC(CreateImage);
|
|
DECLARE_VK_PROC(DestroyImage);
|
|
DECLARE_VK_PROC(GetImageMemoryRequirements);
|
|
DECLARE_VK_PROC(AllocateMemory);
|
|
DECLARE_VK_PROC(FreeMemory);
|
|
DECLARE_VK_PROC(BindImageMemory);
|
|
DECLARE_VK_PROC(MapMemory);
|
|
DECLARE_VK_PROC(UnmapMemory);
|
|
DECLARE_VK_PROC(FlushMappedMemoryRanges);
|
|
DECLARE_VK_PROC(GetImageSubresourceLayout);
|
|
|
|
bool fIsProtected = false;
|
|
VkDevice fDevice = VK_NULL_HANDLE;
|
|
|
|
GrVkExtensions fExtensions;
|
|
VkPhysicalDeviceFeatures2 fFeatures = {};
|
|
VkDebugReportCallbackEXT fDebugCallback = VK_NULL_HANDLE;
|
|
PFN_vkDestroyDebugReportCallbackEXT fDestroyDebugCallback = nullptr;
|
|
GrVkBackendContext fBackendContext;
|
|
sk_sp<GrDirectContext> fDirectContext;
|
|
};
|
|
|
|
#undef DECLARE_VK_PROC
|
|
|
|
#endif // SK_VULKAN
|
|
#endif // VkTestHelper_DEFINED
|