Flutter Engine
The Flutter Engine
GrVkPipeline.h
Go to the documentation of this file.
1/*
2* Copyright 2016 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 GrVkPipeline_DEFINED
9#define GrVkPipeline_DEFINED
10
13#include "src/gpu/Blend.h"
16
17#include <cinttypes>
18
19class GrPipeline;
20class GrProgramInfo;
21class GrRenderTarget;
24class GrVkGpu;
25class GrVkRenderPass;
26class GrXferProcessor;
27struct SkIRect;
28
29namespace skgpu {
30class Swizzle;
31}
32
34public:
36 const GrGeometryProcessor::AttributeSet& vertexAttribs,
37 const GrGeometryProcessor::AttributeSet& instanceAttribs,
40 const GrStencilSettings&,
41 int numSamples,
42 bool isHWAntialiasState,
43 const skgpu::BlendInfo&,
44 bool isWireframe,
45 bool useConservativeRaster,
46 uint32_t subpass,
47 VkPipelineShaderStageCreateInfo* shaderStageInfo,
48 int shaderStageCount,
49 VkRenderPass compatibleRenderPass,
50 VkPipelineLayout layout,
51 bool ownsLayout,
52 VkPipelineCache cache);
53
55 const GrProgramInfo&,
56 VkPipelineShaderStageCreateInfo* shaderStageInfo,
57 int shaderStageCount,
58 VkRenderPass compatibleRenderPass,
59 VkPipelineLayout layout,
60 VkPipelineCache cache,
61 uint32_t subpass);
62
63 VkPipeline pipeline() const { return fPipeline; }
64 VkPipelineLayout layout() const {
66 return fPipelineLayout;
67 }
68
71 SkISize colorAttachmentDimensions,
72 GrSurfaceOrigin, const SkIRect& scissorRect);
75 SkISize colorAttachmentDimensions);
78 const skgpu::Swizzle& writeSwizzle,
79 const GrXferProcessor&);
80
81#ifdef SK_TRACE_MANAGED_RESOURCES
82 void dumpInfo() const override {
83 SkDebugf("GrVkPipeline: %" PRIdPTR " (%d refs)\n", (intptr_t)fPipeline, this->getRefCnt());
84 }
85#endif
86
87protected:
88 GrVkPipeline(const GrVkGpu* gpu, VkPipeline pipeline, VkPipelineLayout layout)
90
91 VkPipeline fPipeline;
92 VkPipelineLayout fPipelineLayout;
93
94private:
95 void freeGPUData() const override;
96
98};
99
100#endif
GrPrimitiveType
Definition: GrTypesPriv.h:43
GrSurfaceOrigin
Definition: GrTypes.h:147
#define SkASSERT(cond)
Definition: SkAssert.h:116
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
GrVkManagedResource(const GrVkGpu *gpu)
static void SetDynamicScissorRectState(GrVkGpu *, GrVkCommandBuffer *, SkISize colorAttachmentDimensions, GrSurfaceOrigin, const SkIRect &scissorRect)
VkPipelineLayout layout() const
Definition: GrVkPipeline.h:64
static void SetDynamicBlendConstantState(GrVkGpu *, GrVkCommandBuffer *, const skgpu::Swizzle &writeSwizzle, const GrXferProcessor &)
VkPipeline fPipeline
Definition: GrVkPipeline.h:91
static sk_sp< GrVkPipeline > Make(GrVkGpu *, const GrGeometryProcessor::AttributeSet &vertexAttribs, const GrGeometryProcessor::AttributeSet &instanceAttribs, GrPrimitiveType, GrSurfaceOrigin, const GrStencilSettings &, int numSamples, bool isHWAntialiasState, const skgpu::BlendInfo &, bool isWireframe, bool useConservativeRaster, uint32_t subpass, VkPipelineShaderStageCreateInfo *shaderStageInfo, int shaderStageCount, VkRenderPass compatibleRenderPass, VkPipelineLayout layout, bool ownsLayout, VkPipelineCache cache)
VkPipelineLayout fPipelineLayout
Definition: GrVkPipeline.h:92
VkPipeline pipeline() const
Definition: GrVkPipeline.h:63
GrVkPipeline(const GrVkGpu *gpu, VkPipeline pipeline, VkPipelineLayout layout)
Definition: GrVkPipeline.h:88
static void SetDynamicViewportState(GrVkGpu *, GrVkCommandBuffer *, SkISize colorAttachmentDimensions)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent cache
Definition: switches.h:191
Definition: GpuTools.h:21
Definition: SkRect.h:32
Definition: SkSize.h:16
#define VK_NULL_HANDLE
Definition: vulkan_core.h:46