Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graph/include/skypass.h
2018-11-07 07:20:52 -05:00

21 lines
332 B
C++

#pragma once
#include <vulkan/vulkan.h>
class Renderer;
class SkyPass {
public:
SkyPass(Renderer& renderer);
~SkyPass();
void render(VkCommandBuffer commandBuffer);
private:
void createPipeline();
VkPipeline pipeline_ = nullptr;
VkPipelineLayout pipelineLayout_ = nullptr;
Renderer& renderer_;
};