2016-03-23 18:01:22 +00:00
|
|
|
/*
|
|
|
|
* 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 GrVkBackendContext_DEFINED
|
|
|
|
#define GrVkBackendContext_DEFINED
|
|
|
|
|
2018-08-01 13:19:45 +00:00
|
|
|
#include "GrVkTypes.h"
|
2016-03-23 18:01:22 +00:00
|
|
|
#include "SkRefCnt.h"
|
2018-05-31 17:13:33 +00:00
|
|
|
#include "vk/GrVkMemoryAllocator.h"
|
2018-05-30 22:58:20 +00:00
|
|
|
|
2018-08-01 17:25:41 +00:00
|
|
|
class GrVkExtensions;
|
|
|
|
|
2016-03-25 13:29:52 +00:00
|
|
|
enum GrVkExtensionFlags {
|
2017-11-02 16:56:09 +00:00
|
|
|
kEXT_debug_report_GrVkExtensionFlag = 0x0001,
|
|
|
|
kNV_glsl_shader_GrVkExtensionFlag = 0x0002,
|
|
|
|
kKHR_surface_GrVkExtensionFlag = 0x0004,
|
|
|
|
kKHR_swapchain_GrVkExtensionFlag = 0x0008,
|
|
|
|
kKHR_win32_surface_GrVkExtensionFlag = 0x0010,
|
|
|
|
kKHR_android_surface_GrVkExtensionFlag = 0x0020,
|
|
|
|
kKHR_xcb_surface_GrVkExtensionFlag = 0x0040,
|
2016-03-25 13:29:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum GrVkFeatureFlags {
|
|
|
|
kGeometryShader_GrVkFeatureFlag = 0x0001,
|
|
|
|
kDualSrcBlend_GrVkFeatureFlag = 0x0002,
|
|
|
|
kSampleRateShading_GrVkFeatureFlag = 0x0004,
|
|
|
|
};
|
|
|
|
|
2016-03-23 18:01:22 +00:00
|
|
|
// The BackendContext contains all of the base Vulkan objects needed by the GrVkGpu. The assumption
|
|
|
|
// is that the client will set these up and pass them to the GrVkGpu constructor. The VkDevice
|
2017-10-09 19:45:33 +00:00
|
|
|
// created must support at least one graphics queue, which is passed in as well.
|
|
|
|
// The QueueFamilyIndex must match the family of the given queue. It is needed for CommandPool
|
2018-07-02 20:15:37 +00:00
|
|
|
// creation, and any GrBackendObjects handed to us (e.g., for wrapped textures) needs to be created
|
|
|
|
// in or transitioned to that family. The refs held by members of this struct must be released
|
|
|
|
// (either by deleting the struct or manually releasing the refs) before the underlying vulkan
|
|
|
|
// device and instance are destroyed.
|
|
|
|
struct SK_API GrVkBackendContext {
|
2016-10-27 16:30:08 +00:00
|
|
|
VkInstance fInstance;
|
|
|
|
VkPhysicalDevice fPhysicalDevice;
|
|
|
|
VkDevice fDevice;
|
|
|
|
VkQueue fQueue;
|
|
|
|
uint32_t fGraphicsQueueIndex;
|
|
|
|
uint32_t fMinAPIVersion;
|
2018-08-01 17:25:41 +00:00
|
|
|
uint32_t fExtensions = 0;
|
|
|
|
const GrVkExtensions* fVkExtensions = nullptr;
|
|
|
|
uint32_t fFeatures = 0;
|
2018-05-31 17:13:33 +00:00
|
|
|
sk_sp<GrVkMemoryAllocator> fMemoryAllocator;
|
2018-07-12 14:02:37 +00:00
|
|
|
GrVkGetProc fGetProc = nullptr;
|
2018-07-02 20:15:37 +00:00
|
|
|
// This is deprecated and should be set to false. The client is responsible for managing the
|
|
|
|
// lifetime of the VkInstance and VkDevice objects.
|
|
|
|
bool fOwnsInstanceAndDevice = false;
|
2016-03-23 18:01:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|