#pragma once #include "../CommandBuffer.h" #include "DeviceMTL.h" #include CC_BACKEND_BEGIN class RenderPipelineMTL; class CommandBufferMTL final : public CommandBuffer { public: CommandBufferMTL(DeviceMTL* deviceMTL); ~CommandBufferMTL(); virtual void beginFrame() override; virtual void beginRenderPass(const RenderPassDescriptor& descriptor) override; virtual void setRenderPipeline(RenderPipeline* renderPipeline) override; virtual void setViewport(int x, int y, unsigned int w, unsigned int h) override; virtual void setCullMode(CullMode mode) override; virtual void setWinding(Winding winding) override; virtual void setVertexBuffer(unsigned int index, Buffer* buffer) override; virtual void setProgramState(ProgramState* programState) override; virtual void setIndexBuffer(Buffer* buffer) override; virtual void drawArrays(PrimitiveType primitiveType, unsigned int start, unsigned int count) override; virtual void drawElements(PrimitiveType primitiveType, IndexFormat indexType, unsigned int count, unsigned int offset) override; virtual void endRenderPass() override; virtual void endFrame() override; virtual void setLineWidth(float lineWidth) override; virtual void setScissorRect(bool isEnabled, float x, float y, float width, float height) override; virtual void setDepthStencilState(DepthStencilState* depthStencilState) override; private: void prepareDrawing() const; void setTextures() const; void doSetTextures(bool isVertex) const; void setUniformBuffer() const; unsigned int fillUniformBuffer(uint8_t* buffer, const std::vector& unifornInfo) const; void afterDraw(); id getRenderCommandEncoder(const RenderPassDescriptor& renderPassDescriptor); id _mtlCommandBuffer = nil; id _mtlCommandQueue = nil; id _mtlRenderEncoder = nil; id _mtlIndexBuffer = nil; RenderPipelineMTL* _renderPipelineMTL = nullptr; ProgramState* _programState = nullptr; id _mtlDepthStencilState = nil; unsigned int _renderTargetWidth = 0; unsigned int _renderTargetHeight = 0; dispatch_semaphore_t _frameBoundarySemaphore; RenderPassDescriptor _prevRenderPassDescriptor; }; CC_BACKEND_END