skia2/tools/gpu/vk/VkTestContext.h
Greg Daniel a0651acaf2 Update vulkan features (again) to support extension features.
We need to handle all the possible ways a client is allowed to initialize
features on Vulkan.

Bug: skia:
Change-Id: I98b1dee2efa2c22c26ce093c590c7ccd0b626969
Reviewed-on: https://skia-review.googlesource.com/145530
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
2018-08-08 13:48:38 +00:00

70 lines
1.8 KiB
C++

/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef VkTestContext_DEFINED
#define VkTestContext_DEFINED
#include "TestContext.h"
#ifdef SK_VULKAN
#include "GrVulkanDefines.h"
#include "vk/GrVkBackendContext.h"
class GrVkExtensions;
namespace sk_gpu_test {
class VkTestContext : public TestContext {
public:
virtual GrBackend backend() override { return kVulkan_GrBackend; }
const GrVkBackendContext& getVkBackendContext() const {
return fVk;
}
const GrVkExtensions* getVkExtensions() const {
return fExtensions;
}
const VkPhysicalDeviceFeatures2* getVkFeatures() const {
return fFeatures;
}
protected:
VkTestContext(const GrVkBackendContext& vk, const GrVkExtensions* extensions,
const VkPhysicalDeviceFeatures2* features, bool ownsContext,
VkDebugReportCallbackEXT debugCallback,
PFN_vkDestroyDebugReportCallbackEXT destroyCallback)
: fVk(vk)
, fExtensions(extensions)
, fFeatures(features)
, fOwnsContext(ownsContext)
, fDebugCallback(debugCallback)
, fDestroyDebugReportCallbackEXT(destroyCallback) {}
GrVkBackendContext fVk;
const GrVkExtensions* fExtensions;
const VkPhysicalDeviceFeatures2* fFeatures;
bool fOwnsContext;
VkDebugReportCallbackEXT fDebugCallback = VK_NULL_HANDLE;
PFN_vkDestroyDebugReportCallbackEXT fDestroyDebugReportCallbackEXT = nullptr;
private:
typedef TestContext INHERITED;
};
/**
* Creates Vk context object bound to the native Vk library.
*/
VkTestContext* CreatePlatformVkTestContext(VkTestContext*);
} // namespace sk_gpu_test
#endif
#endif