Files
NazaraEngine/include/Nazara/OpenGLRenderer/OpenGLRenderImage.inl
Lynix 1e81b38c0f Graphics: Replace RenderFrame by RenderResources
This changes makes the whole rendering independent from the RenderFrame acquired from the Swapchain.
This may allow to do offscreen rendering (= without swapchain), or multi-window rendering in the future
2023-11-21 23:33:18 +01:00

16 lines
410 B
C++

// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - OpenGL renderer"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/OpenGLRenderer/Debug.hpp>
namespace Nz
{
inline void OpenGLRenderImage::Reset(UInt32 imageIndex)
{
m_imageIndex = imageIndex;
}
}
#include <Nazara/OpenGLRenderer/DebugOff.hpp>