1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 06:47:44 +00:00
novus/renderer/include/pass.h

14 lines
276 B
C
Raw Normal View History

2025-05-13 22:18:47 -04:00
// SPDX-FileCopyrightText: 2025 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <vulkan/vulkan.h>
class Camera;
class RendererPass
{
public:
virtual void render(VkCommandBuffer commandBuffer, Camera &camera) = 0;
};