blob: 5ab40b2a05f5ec4d3a9aca68e38fe9e6afc8ff57 [file] [log] [blame]
Timothy Liange70604e2018-07-19 09:49:46 -04001/*
2 * Copyright 2018 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 GrMtlGpuCommandBuffer_DEFINED
9#define GrMtlGpuCommandBuffer_DEFINED
10
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "src/gpu/GrGpuCommandBuffer.h"
12#include "src/gpu/GrMesh.h"
13#include "src/gpu/GrOpFlushState.h"
14#include "src/gpu/mtl/GrMtlGpu.h"
Timothy Liange70604e2018-07-19 09:49:46 -040015
Timothy Liang7ac582e2018-08-06 09:47:23 -040016#import <metal/metal.h>
17
Timothy Liang5422f9a2018-08-10 10:57:55 -040018typedef uint32_t GrColor;
Jim Van Verth35a67eb2019-05-03 10:58:40 -040019class GrMtlBuffer;
Timothy Liang5422f9a2018-08-10 10:57:55 -040020class GrMtlPipelineState;
Timothy Liange70604e2018-07-19 09:49:46 -040021class GrMtlRenderTarget;
22
23class GrMtlGpuTextureCommandBuffer : public GrGpuTextureCommandBuffer {
24public:
25 GrMtlGpuTextureCommandBuffer(GrMtlGpu* gpu, GrTexture* texture, GrSurfaceOrigin origin)
26 : INHERITED(texture, origin)
27 , fGpu(gpu) {
Timothy Liange70604e2018-07-19 09:49:46 -040028 }
29
30 ~GrMtlGpuTextureCommandBuffer() override {}
31
Greg Daniel46cfbc62019-06-07 11:43:30 -040032 void copy(GrSurface* src, const SkIRect& srcRect, const SkIPoint& dstPoint) override {
33 fGpu->copySurface(fTexture, src, srcRect, dstPoint);
Timothy Liange35055f2018-07-20 16:53:00 -040034 }
Brian Salomonab32f652019-05-10 14:24:50 -040035 void transferFrom(const SkIRect& srcRect, GrColorType bufferColorType,
36 GrGpuBuffer* transferBuffer, size_t offset) override {
37 fGpu->transferPixelsFrom(fTexture, srcRect.fLeft, srcRect.fTop, srcRect.width(),
38 srcRect.height(), bufferColorType, transferBuffer, offset);
39 }
Timothy Liange70604e2018-07-19 09:49:46 -040040 void insertEventMarker(const char* msg) override {}
41
42private:
Timothy Liange70604e2018-07-19 09:49:46 -040043 GrMtlGpu* fGpu;
44
45 typedef GrGpuTextureCommandBuffer INHERITED;
46};
47
Timothy Liang5422f9a2018-08-10 10:57:55 -040048class GrMtlGpuRTCommandBuffer : public GrGpuRTCommandBuffer, private GrMesh::SendToGpuImpl {
Timothy Liange70604e2018-07-19 09:49:46 -040049public:
50 GrMtlGpuRTCommandBuffer(GrMtlGpu* gpu, GrRenderTarget* rt, GrSurfaceOrigin origin,
Ethan Nicholas56d19a52018-10-15 11:26:20 -040051 const SkRect& bounds,
Timothy Liange70604e2018-07-19 09:49:46 -040052 const GrGpuRTCommandBuffer::LoadAndStoreInfo& colorInfo,
Timothy Liang5422f9a2018-08-10 10:57:55 -040053 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo);
54
55 ~GrMtlGpuRTCommandBuffer() override;
Timothy Liange70604e2018-07-19 09:49:46 -040056
Timothy Liange70604e2018-07-19 09:49:46 -040057 void begin() override {}
58 void end() override {}
59
60 void discard() override {}
61
62 void insertEventMarker(const char* msg) override {}
63
Jim Van Verth6f8bfba2019-04-15 15:28:41 -040064 void inlineUpload(GrOpFlushState* state, GrDeferredTextureUploadFn& upload) override {
65 // TODO: this could be more efficient
66 state->doUpload(upload);
67 }
Brian Salomonab32f652019-05-10 14:24:50 -040068 void transferFrom(const SkIRect& srcRect, GrColorType bufferColorType,
69 GrGpuBuffer* transferBuffer, size_t offset) override;
Greg Daniel46cfbc62019-06-07 11:43:30 -040070 void copy(GrSurface* src, const SkIRect& srcRect, const SkIPoint& dstPoint) override;
Timothy Liang5422f9a2018-08-10 10:57:55 -040071
72 void submit();
Timothy Liange70604e2018-07-19 09:49:46 -040073
Timothy Liange70604e2018-07-19 09:49:46 -040074private:
75 GrGpu* gpu() override { return fGpu; }
76
Timothy Liang5422f9a2018-08-10 10:57:55 -040077 GrMtlPipelineState* prepareDrawState(
78 const GrPrimitiveProcessor& primProc,
79 const GrPipeline& pipeline,
80 const GrPipeline::FixedDynamicState* fixedDynamicState,
Jim Van Verth1223e7f2019-02-28 17:38:35 -050081 GrPrimitiveType primType);
Timothy Liang5422f9a2018-08-10 10:57:55 -040082
Timothy Liange70604e2018-07-19 09:49:46 -040083 void onDraw(const GrPrimitiveProcessor& primProc,
84 const GrPipeline& pipeline,
85 const GrPipeline::FixedDynamicState* fixedDynamicState,
86 const GrPipeline::DynamicStateArrays* dynamicStateArrays,
87 const GrMesh mesh[],
88 int meshCount,
Timothy Liang5422f9a2018-08-10 10:57:55 -040089 const SkRect& bounds) override;
Timothy Liange70604e2018-07-19 09:49:46 -040090
Brian Osman9a9baae2018-11-05 15:06:26 -050091 void onClear(const GrFixedClip& clip, const SkPMColor4f& color) override;
Timothy Liange70604e2018-07-19 09:49:46 -040092
Ethan Nicholas01063512018-10-08 16:58:25 -040093 void onClearStencilClip(const GrFixedClip& clip, bool insideStencilMask) override;
Timothy Liange70604e2018-07-19 09:49:46 -040094
Jim Van Verthc159f942019-06-10 14:46:51 -040095 void setupRenderPass(const GrGpuRTCommandBuffer::LoadAndStoreInfo& colorInfo,
96 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo);
Timothy Liang5422f9a2018-08-10 10:57:55 -040097
Jim Van Verth03464f12019-06-03 11:09:40 -040098 void bindGeometry(const GrBuffer* vertexBuffer, size_t vertexOffset,
99 const GrBuffer* instanceBuffer);
Timothy Liang5422f9a2018-08-10 10:57:55 -0400100
101 // GrMesh::SendToGpuImpl methods. These issue the actual Metal draw commands.
102 // Marked final as a hint to the compiler to not use virtual dispatch.
103 void sendMeshToGpu(GrPrimitiveType primType, const GrBuffer* vertexBuffer, int vertexCount,
Jim Van Verth03464f12019-06-03 11:09:40 -0400104 int baseVertex) final;
Timothy Liang5422f9a2018-08-10 10:57:55 -0400105
106 void sendIndexedMeshToGpu(GrPrimitiveType primType, const GrBuffer* indexBuffer, int indexCount,
107 int baseIndex, uint16_t /*minIndexValue*/, uint16_t /*maxIndexValue*/,
108 const GrBuffer* vertexBuffer, int baseVertex,
Jim Van Verth03464f12019-06-03 11:09:40 -0400109 GrPrimitiveRestart restart) final;
Timothy Liang5422f9a2018-08-10 10:57:55 -0400110
111 void sendInstancedMeshToGpu(GrPrimitiveType, const GrBuffer* vertexBuffer, int vertexCount,
112 int baseVertex, const GrBuffer* instanceBuffer, int instanceCount,
113 int baseInstance) final;
114
115 void sendIndexedInstancedMeshToGpu(GrPrimitiveType, const GrBuffer* indexBuffer, int indexCount,
116 int baseIndex, const GrBuffer* vertexBuffer, int baseVertex,
117 const GrBuffer* instanceBuffer, int instanceCount,
118 int baseInstance, GrPrimitiveRestart) final;
119
Jim Van Verth03464f12019-06-03 11:09:40 -0400120 void setVertexBuffer(id<MTLRenderCommandEncoder>, const GrMtlBuffer*, size_t offset,
121 size_t index);
Jim Van Verth35a67eb2019-05-03 10:58:40 -0400122 void resetBufferBindings();
Jim Van Verthc159f942019-06-10 14:46:51 -0400123 void precreateCmdEncoder();
Jim Van Verth35a67eb2019-05-03 10:58:40 -0400124
Jim Van Verthc159f942019-06-10 14:46:51 -0400125 GrMtlGpu* fGpu;
Ethan Nicholas56d19a52018-10-15 11:26:20 -0400126 // GrRenderTargetProxy bounds
Ethan Nicholas391d3442018-10-15 13:00:59 -0400127#ifdef SK_DEBUG
Jim Van Verthc159f942019-06-10 14:46:51 -0400128 SkRect fRTBounds;
Ethan Nicholas391d3442018-10-15 13:00:59 -0400129#endif
Timothy Liange70604e2018-07-19 09:49:46 -0400130
Jim Van Verth61610be2019-03-07 15:33:49 -0500131 id<MTLRenderCommandEncoder> fActiveRenderCmdEncoder;
132 MTLRenderPassDescriptor* fRenderPassDesc;
Jim Van Verthc159f942019-06-10 14:46:51 -0400133 SkRect fBounds;
134 size_t fCurrentVertexStride;
Timothy Liang5422f9a2018-08-10 10:57:55 -0400135
Jim Van Verth35a67eb2019-05-03 10:58:40 -0400136 static constexpr size_t kNumBindings = GrMtlUniformHandler::kLastUniformBinding + 3;
137 id<MTLBuffer> fBufferBindings[kNumBindings];
138
Timothy Liange70604e2018-07-19 09:49:46 -0400139 typedef GrGpuRTCommandBuffer INHERITED;
140};
141
142#endif
143