blob: ed8c9a50db7f1ac1f407cff35e4c47374c6de1b5 [file] [log] [blame]
Greg Daniel164a9f02016-02-22 09:56:40 -05001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrVkGpu_DEFINED
9#define GrVkGpu_DEFINED
10
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/gpu/vk/GrVkBackendContext.h"
12#include "include/gpu/vk/GrVkTypes.h"
13#include "src/gpu/GrGpu.h"
14#include "src/gpu/vk/GrVkCaps.h"
15#include "src/gpu/vk/GrVkCopyManager.h"
16#include "src/gpu/vk/GrVkIndexBuffer.h"
17#include "src/gpu/vk/GrVkMemory.h"
18#include "src/gpu/vk/GrVkResourceProvider.h"
19#include "src/gpu/vk/GrVkSemaphore.h"
20#include "src/gpu/vk/GrVkUtil.h"
21#include "src/gpu/vk/GrVkVertexBuffer.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050022
23class GrPipeline;
Greg Daniel164a9f02016-02-22 09:56:40 -050024
25class GrVkBufferImpl;
Ethan Nicholas8e265a72018-12-12 16:22:40 -050026class GrVkCommandPool;
Robert Phillips5b5d84c2018-08-09 15:12:18 -040027class GrVkGpuRTCommandBuffer;
28class GrVkGpuTextureCommandBuffer;
Greg Daniel81df0412018-05-31 13:13:33 -040029class GrVkMemoryAllocator;
Greg Daniel164a9f02016-02-22 09:56:40 -050030class GrVkPipeline;
egdaniel22281c12016-03-23 13:49:40 -070031class GrVkPipelineState;
egdaniel066df7c2016-06-08 14:02:27 -070032class GrVkPrimaryCommandBuffer;
Greg Daniel164a9f02016-02-22 09:56:40 -050033class GrVkRenderPass;
egdaniel066df7c2016-06-08 14:02:27 -070034class GrVkSecondaryCommandBuffer;
Greg Daniel164a9f02016-02-22 09:56:40 -050035class GrVkTexture;
36struct GrVkInterface;
37
Ethan Nicholas941e7e22016-12-12 15:33:30 -050038namespace SkSL {
39 class Compiler;
40}
41
Greg Daniel164a9f02016-02-22 09:56:40 -050042class GrVkGpu : public GrGpu {
43public:
Greg Danielf730c182018-07-02 20:15:37 +000044 static sk_sp<GrGpu> Make(const GrVkBackendContext&, const GrContextOptions&, GrContext*);
jvanverth633b3562016-03-23 11:01:22 -070045
Greg Daniel164a9f02016-02-22 09:56:40 -050046 ~GrVkGpu() override;
47
Greg Daniel8606cf82017-05-08 16:17:53 -040048 void disconnect(DisconnectType) override;
49
Greg Danielf730c182018-07-02 20:15:37 +000050 const GrVkInterface* vkInterface() const { return fInterface.get(); }
Greg Daniel164a9f02016-02-22 09:56:40 -050051 const GrVkCaps& vkCaps() const { return *fVkCaps; }
52
Greg Daniel81df0412018-05-31 13:13:33 -040053 GrVkMemoryAllocator* memoryAllocator() const { return fMemoryAllocator.get(); }
54
Greg Daniel637c06a2018-09-12 09:44:25 -040055 VkPhysicalDevice physicalDevice() const { return fPhysicalDevice; }
Greg Daniel164a9f02016-02-22 09:56:40 -050056 VkDevice device() const { return fDevice; }
57 VkQueue queue() const { return fQueue; }
Greg Danielecddbc02018-08-30 16:39:34 -040058 uint32_t queueIndex() const { return fQueueIndex; }
Ethan Nicholas8e265a72018-12-12 16:22:40 -050059 GrVkCommandPool* cmdPool() const { return fCmdPool; }
Greg Daniela870b462019-01-08 15:49:46 -050060 const VkPhysicalDeviceProperties& physicalDeviceProperties() const {
Greg Daniel8385a8a2018-02-26 13:29:37 -050061 return fPhysDevProps;
62 }
Greg Daniela870b462019-01-08 15:49:46 -050063 const VkPhysicalDeviceMemoryProperties& physicalDeviceMemoryProperties() const {
Greg Daniel164a9f02016-02-22 09:56:40 -050064 return fPhysDevMemProps;
65 }
66
egdanielbc9b2962016-09-27 08:00:53 -070067 GrVkResourceProvider& resourceProvider() { return fResourceProvider; }
68
69 GrVkPrimaryCommandBuffer* currentCommandBuffer() { return fCurrentCmdBuffer; }
Greg Daniel164a9f02016-02-22 09:56:40 -050070
71 enum SyncQueue {
72 kForce_SyncQueue,
73 kSkip_SyncQueue
74 };
75
Chris Dalton8c4cafd2019-04-15 19:14:36 -060076 void querySampleLocations(GrRenderTarget*, SkTArray<SkPoint>*) override {
Chris Daltond7291ba2019-03-07 14:17:03 -070077 SkASSERT(!this->caps()->sampleLocationsSupport());
78 SK_ABORT("Sample locations not yet implemented for Vulkan.");
79 }
80
Greg Daniel164a9f02016-02-22 09:56:40 -050081 void xferBarrier(GrRenderTarget*, GrXferBarrierType) override {}
82
Robert Phillips9dbcdcc2019-05-13 10:40:06 -040083 GrBackendTexture createTestingOnlyBackendTexture(int w, int h, const GrBackendFormat&,
84 GrMipMapped, GrRenderable,
85 const void* pixels = nullptr,
86 size_t rowBytes = 0) override;
Brian Salomon26102cb2018-03-09 09:33:19 -050087 void deleteTestingOnlyBackendTexture(const GrBackendTexture&) override;
Robert Phillipsf0ced622019-05-16 09:06:25 -040088#if GR_TEST_UTILS
89 bool isTestingOnlyBackendTexture(const GrBackendTexture&) const override;
Greg Daniel164a9f02016-02-22 09:56:40 -050090
Brian Osman2d010b62018-08-09 10:55:09 -040091 GrBackendRenderTarget createTestingOnlyBackendRenderTarget(int w, int h, GrColorType) override;
Brian Salomonf865b052018-03-09 09:01:53 -050092 void deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget&) override;
93
Greg Daniel26b50a42018-03-08 09:49:58 -050094 void testingOnly_flushGpuAndSync() override;
Brian Osmanfd7657c2019-04-25 11:34:07 -040095
96 void resetShaderCacheForTesting() const override {
97 fResourceProvider.resetShaderCacheForTesting();
98 }
Brian Salomonf865b052018-03-09 09:01:53 -050099#endif
Greg Daniel26b50a42018-03-08 09:49:58 -0500100
Greg Daniel164a9f02016-02-22 09:56:40 -0500101 GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*,
102 int width,
103 int height) override;
104
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400105 GrGpuRTCommandBuffer* getCommandBuffer(
Ethan Nicholas56d19a52018-10-15 11:26:20 -0400106 GrRenderTarget*, GrSurfaceOrigin, const SkRect&,
Greg Daniel500d58b2017-08-24 15:59:33 -0400107 const GrGpuRTCommandBuffer::LoadAndStoreInfo&,
108 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo&) override;
109
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400110 GrGpuTextureCommandBuffer* getCommandBuffer(GrTexture*, GrSurfaceOrigin) override;
111
egdaniel066df7c2016-06-08 14:02:27 -0700112
Greg Daniel59dc1482019-02-22 10:46:38 -0500113 void addBufferMemoryBarrier(const GrVkResource*,
114 VkPipelineStageFlags srcStageMask,
Greg Daniel164a9f02016-02-22 09:56:40 -0500115 VkPipelineStageFlags dstStageMask,
116 bool byRegion,
117 VkBufferMemoryBarrier* barrier) const;
Greg Daniel59dc1482019-02-22 10:46:38 -0500118 void addImageMemoryBarrier(const GrVkResource*,
119 VkPipelineStageFlags srcStageMask,
Greg Daniel164a9f02016-02-22 09:56:40 -0500120 VkPipelineStageFlags dstStageMask,
121 bool byRegion,
122 VkImageMemoryBarrier* barrier) const;
halcanary9d524f22016-03-29 09:03:52 -0700123
ethannicholasb3058bd2016-07-01 08:22:01 -0700124 SkSL::Compiler* shaderCompiler() const {
125 return fCompiler;
126 }
Greg Daniel164a9f02016-02-22 09:56:40 -0500127
Brian Salomon930f9392018-06-20 16:25:26 -0400128 bool onRegenerateMipMapLevels(GrTexture* tex) override;
129
Greg Daniel0a77f432018-12-06 11:23:32 -0500130 void resolveRenderTargetNoFlush(GrRenderTarget* target) {
131 this->internalResolveRenderTarget(target, false);
132 }
133
Brian Salomon1fabd512018-02-09 09:54:25 -0500134 void onResolveRenderTarget(GrRenderTarget* target) override {
Greg Daniel0a77f432018-12-06 11:23:32 -0500135 // This resolve is called when we are preparing an msaa surface for external I/O. It is
136 // called after flushing, so we need to make sure we submit the command buffer after doing
137 // the resolve so that the resolve actually happens.
Brian Salomon1fabd512018-02-09 09:54:25 -0500138 this->internalResolveRenderTarget(target, true);
Greg Daniel69d49922017-02-23 09:44:02 -0500139 }
egdaniel66933552016-08-24 07:22:19 -0700140
Greg Daniel22bc8652017-03-22 15:45:43 -0400141 void submitSecondaryCommandBuffer(const SkTArray<GrVkSecondaryCommandBuffer*>&,
egdaniel9cb63402016-06-23 08:37:05 -0700142 const GrVkRenderPass*,
Robert Phillips8c326e92017-08-10 13:50:17 -0400143 const VkClearValue* colorClear,
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400144 GrVkRenderTarget*, GrSurfaceOrigin,
egdaniel9cb63402016-06-23 08:37:05 -0700145 const SkIRect& bounds);
egdaniel066df7c2016-06-08 14:02:27 -0700146
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400147 void submit(GrGpuCommandBuffer*) override;
148
Greg Daniel6be35232017-03-01 17:01:09 -0500149 GrFence SK_WARN_UNUSED_RESULT insertFence() override;
150 bool waitFence(GrFence, uint64_t timeout) override;
jvanverth84741b32016-09-30 08:39:02 -0700151 void deleteFence(GrFence) const override;
152
Greg Daniela5cb7812017-06-16 09:45:32 -0400153 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override;
Greg Daniel48661b82018-01-22 16:11:35 -0500154 sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore& semaphore,
155 GrResourceProvider::SemaphoreWrapType wrapType,
156 GrWrapOwnership ownership) override;
Greg Daniel858e12c2018-12-06 11:11:37 -0500157 void insertSemaphore(sk_sp<GrSemaphore> semaphore) override;
Greg Daniel48661b82018-01-22 16:11:35 -0500158 void waitSemaphore(sk_sp<GrSemaphore> semaphore) override;
159
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400160 // These match the definitions in SkDrawable, from whence they came
161 typedef void* SubmitContext;
162 typedef void (*SubmitProc)(SubmitContext submitContext);
163
164 // Adds an SkDrawable::GpuDrawHandler that we will delete the next time we submit the primary
165 // command buffer to the gpu.
166 void addDrawable(std::unique_ptr<SkDrawable::GpuDrawHandler> drawable);
167
Brian Salomonb0d8b762019-05-06 16:58:22 -0400168 void checkFinishProcs() override { fResourceProvider.checkCommandBuffers(); }
169
Brian Osman13dddce2017-05-09 13:19:50 -0400170 sk_sp<GrSemaphore> prepareTextureForCrossContextUsage(GrTexture*) override;
171
Greg Daniel6888c0d2017-08-25 11:55:50 -0400172 void copyBuffer(GrVkBuffer* srcBuffer, GrVkBuffer* dstBuffer, VkDeviceSize srcOffset,
173 VkDeviceSize dstOffset, VkDeviceSize size);
jvanverthdb379092016-07-07 11:18:46 -0700174 bool updateBuffer(GrVkBuffer* buffer, const void* src, VkDeviceSize offset, VkDeviceSize size);
jvanvertha584de92016-06-30 09:10:52 -0700175
Greg Daniel7a82edf2018-12-04 10:54:34 -0500176 uint32_t getExtraSamplerKeyForProgram(const GrSamplerState&,
177 const GrBackendFormat& format) override;
178
Greg Daniela870b462019-01-08 15:49:46 -0500179 enum PersistentCacheKeyType : uint32_t {
180 kShader_PersistentCacheKeyType = 0,
181 kPipelineCache_PersistentCacheKeyType = 1,
182 };
183
184 void storeVkPipelineCacheData() override;
185
Greg Daniel164a9f02016-02-22 09:56:40 -0500186private:
Greg Daniel98bffae2018-08-01 13:25:41 -0400187 GrVkGpu(GrContext*, const GrContextOptions&, const GrVkBackendContext&,
Greg Daniel41f0e282019-01-28 13:15:05 -0500188 sk_sp<const GrVkInterface>, uint32_t instanceVersion, uint32_t physicalDeviceVersion);
jvanverth633b3562016-03-23 11:01:22 -0700189
egdanielcfcd1812016-03-22 07:16:10 -0700190 void onResetContext(uint32_t resetBits) override {}
Greg Daniel164a9f02016-02-22 09:56:40 -0500191
Greg Daniel8606cf82017-05-08 16:17:53 -0400192 void destroyResources();
193
Brian Salomon58389b92018-03-07 13:01:25 -0500194 sk_sp<GrTexture> onCreateTexture(const GrSurfaceDesc&, SkBudgeted, const GrMipLevel[],
Brian Salomon2a4f9832018-03-03 22:43:43 -0500195 int mipLevelCount) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500196
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500197 sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, GrWrapOwnership, GrWrapCacheable,
198 GrIOType) override;
Brian Salomond17f6582017-07-19 18:28:58 -0400199 sk_sp<GrTexture> onWrapRenderableBackendTexture(const GrBackendTexture&,
Brian Salomond17f6582017-07-19 18:28:58 -0400200 int sampleCnt,
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500201 GrWrapOwnership,
202 GrWrapCacheable) override;
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400203 sk_sp<GrRenderTarget> onWrapBackendRenderTarget(const GrBackendRenderTarget&) override;
Greg Daniel7ef28f32017-04-20 16:41:55 +0000204
205 sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000206 int sampleCnt) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500207
Greg Danielb46add82019-01-02 14:51:29 -0500208 sk_sp<GrRenderTarget> onWrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
209 const GrVkDrawableInfo&) override;
210
Brian Salomondbf70722019-02-07 11:31:24 -0500211 sk_sp<GrGpuBuffer> onCreateBuffer(size_t size, GrGpuBufferType type, GrAccessPattern,
212 const void* data) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500213
Brian Salomona6948702018-06-01 15:33:20 -0400214 bool onReadPixels(GrSurface* surface, int left, int top, int width, int height, GrColorType,
215 void* buffer, size_t rowBytes) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500216
Brian Salomona9b04b92018-06-01 15:04:28 -0400217 bool onWritePixels(GrSurface* surface, int left, int top, int width, int height, GrColorType,
218 const GrMipLevel texels[], int mipLevelCount) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500219
Brian Salomone05ba5a2019-04-08 11:59:07 -0400220 bool onTransferPixelsTo(GrTexture*, int left, int top, int width, int height, GrColorType,
221 GrGpuBuffer* transferBuffer, size_t offset, size_t rowBytes) override;
Brian Salomon26de56e2019-04-10 12:14:26 -0400222 bool onTransferPixelsFrom(GrSurface* surface, int left, int top, int width, int height,
223 GrColorType, GrGpuBuffer* transferBuffer, size_t offset) override;
Greg Daniel164a9f02016-02-22 09:56:40 -0500224
Brian Salomon9b009bb2018-02-14 13:53:55 -0500225 bool onCopySurface(GrSurface* dst, GrSurfaceOrigin dstOrigin, GrSurface* src,
226 GrSurfaceOrigin srcOrigin, const SkIRect& srcRect,
Greg Daniel55fa6472018-03-16 16:13:10 -0400227 const SkIPoint& dstPoint, bool canDiscardOutsideDstRect) override;
Brian Salomon9b009bb2018-02-14 13:53:55 -0500228
Brian Salomonf9a1fdf2019-05-09 10:30:12 -0400229 void onFinishFlush(GrSurfaceProxy*[], int, SkSurface::BackendSurfaceAccess access,
Greg Daniel797efca2019-05-09 14:04:20 -0400230 const GrFlushInfo&, const GrPrepareForExternalIORequests&) override;
Greg Daniel51316782017-08-02 15:10:09 +0000231
Greg Daniel164a9f02016-02-22 09:56:40 -0500232 // Ends and submits the current command buffer to the queue and then creates a new command
halcanary9d524f22016-03-29 09:03:52 -0700233 // buffer and begins it. If sync is set to kForce_SyncQueue, the function will wait for all
Greg Daniela5cb7812017-06-16 09:45:32 -0400234 // work in the queue to finish before returning. If this GrVkGpu object has any semaphores in
235 // fSemaphoreToSignal, we will add those signal semaphores to the submission of this command
236 // buffer. If this GrVkGpu object has any semaphores in fSemaphoresToWaitOn, we will add those
237 // wait semaphores to the submission of this command buffer.
Greg Daniela3aa75a2019-04-12 14:24:55 -0400238 void submitCommandBuffer(SyncQueue sync, GrGpuFinishedProc finishedProc = nullptr,
239 GrGpuFinishedContext finishedContext = nullptr);
Greg Daniel164a9f02016-02-22 09:56:40 -0500240
Brian Salomon1fabd512018-02-09 09:54:25 -0500241 void internalResolveRenderTarget(GrRenderTarget*, bool requiresSubmit);
Greg Daniel69d49922017-02-23 09:44:02 -0500242
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400243 void copySurfaceAsCopyImage(GrSurface* dst, GrSurfaceOrigin dstOrigin,
244 GrSurface* src, GrSurfaceOrigin srcOrigin,
245 GrVkImage* dstImage, GrVkImage* srcImage,
Greg Daniel164a9f02016-02-22 09:56:40 -0500246 const SkIRect& srcRect,
247 const SkIPoint& dstPoint);
248
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400249 void copySurfaceAsBlit(GrSurface* dst, GrSurfaceOrigin dstOrigin,
250 GrSurface* src, GrSurfaceOrigin srcOrigin,
251 GrVkImage* dstImage, GrVkImage* srcImage,
egdaniel17b89252016-04-05 07:23:38 -0700252 const SkIRect& srcRect,
253 const SkIPoint& dstPoint);
254
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400255 void copySurfaceAsResolve(GrSurface* dst, GrSurfaceOrigin dstOrigin,
256 GrSurface* src, GrSurfaceOrigin srcOrigin,
egdaniel4bcd62e2016-08-31 07:37:31 -0700257 const SkIRect& srcRect,
258 const SkIPoint& dstPoint);
259
jvanverth900bd4a2016-04-29 13:53:12 -0700260 // helpers for onCreateTexture and writeTexturePixels
Brian Salomona9b04b92018-06-01 15:04:28 -0400261 bool uploadTexDataLinear(GrVkTexture* tex, int left, int top, int width, int height,
262 GrColorType colorType, const void* data, size_t rowBytes);
263 bool uploadTexDataOptimal(GrVkTexture* tex, int left, int top, int width, int height,
264 GrColorType colorType, const GrMipLevel texels[], int mipLevelCount);
Jim Van Verth1676cb92019-01-15 13:24:45 -0500265 bool uploadTexDataCompressed(GrVkTexture* tex, int left, int top, int width, int height,
266 GrColorType dataColorType, const GrMipLevel texels[],
267 int mipLevelCount);
Brian Salomon1fabd512018-02-09 09:54:25 -0500268 void resolveImage(GrSurface* dst, GrVkRenderTarget* src, const SkIRect& srcRect,
269 const SkIPoint& dstPoint);
egdaniel4bcd62e2016-08-31 07:37:31 -0700270
Brian Salomon52e943a2018-03-13 09:32:39 -0400271 bool createTestingOnlyVkImage(GrPixelConfig config, int w, int h, bool texturable,
272 bool renderable, GrMipMapped mipMapped, const void* srcData,
Robert Phillips646f6372018-09-25 09:31:10 -0400273 size_t srcRowBytes, GrVkImageInfo* info);
Brian Salomon52e943a2018-03-13 09:32:39 -0400274
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400275 sk_sp<const GrVkInterface> fInterface;
276 sk_sp<GrVkMemoryAllocator> fMemoryAllocator;
277 sk_sp<GrVkCaps> fVkCaps;
jvanverth633b3562016-03-23 11:01:22 -0700278
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400279 VkInstance fInstance;
280 VkPhysicalDevice fPhysicalDevice;
281 VkDevice fDevice;
282 VkQueue fQueue; // Must be Graphics queue
283 uint32_t fQueueIndex;
jvanverth633b3562016-03-23 11:01:22 -0700284
285 // Created by GrVkGpu
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400286 GrVkResourceProvider fResourceProvider;
Greg Daniel164a9f02016-02-22 09:56:40 -0500287
Ethan Nicholas8e265a72018-12-12 16:22:40 -0500288 GrVkCommandPool* fCmdPool;
289
290 // just a raw pointer; object's lifespan is managed by fCmdPool
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400291 GrVkPrimaryCommandBuffer* fCurrentCmdBuffer;
jvanverth6b6ffc42016-06-13 14:28:07 -0700292
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400293 SkSTArray<1, GrVkSemaphore::Resource*> fSemaphoresToWaitOn;
294 SkSTArray<1, GrVkSemaphore::Resource*> fSemaphoresToSignal;
Greg Daniel6be35232017-03-01 17:01:09 -0500295
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400296 SkTArray<std::unique_ptr<SkDrawable::GpuDrawHandler>> fDrawables;
Greg Daniel6be35232017-03-01 17:01:09 -0500297
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400298 VkPhysicalDeviceProperties fPhysDevProps;
299 VkPhysicalDeviceMemoryProperties fPhysDevMemProps;
300
301 GrVkCopyManager fCopyManager;
egdanielbc9b2962016-09-27 08:00:53 -0700302
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500303 // compiler used for compiling sksl into spirv. We only want to create the compiler once since
304 // there is significant overhead to the first compile of any compiler.
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400305 SkSL::Compiler* fCompiler;
Greg Daniel164a9f02016-02-22 09:56:40 -0500306
Greg Daniel8606cf82017-05-08 16:17:53 -0400307 // We need a bool to track whether or not we've already disconnected all the gpu resources from
308 // vulkan context.
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400309 bool fDisconnected;
Greg Daniel8606cf82017-05-08 16:17:53 -0400310
Greg Daniel64cc9aa2018-10-19 13:54:56 -0400311 std::unique_ptr<GrVkGpuRTCommandBuffer> fCachedRTCommandBuffer;
312 std::unique_ptr<GrVkGpuTextureCommandBuffer> fCachedTexCommandBuffer;
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400313
Greg Daniel164a9f02016-02-22 09:56:40 -0500314 typedef GrGpu INHERITED;
315};
316
317#endif