Fix compilation
This commit is contained in:
parent
c669c68533
commit
507a4f16be
|
|
@ -36,8 +36,8 @@ namespace Nz
|
|||
|
||||
void RegisterToFrameGraph(FrameGraph& frameGraph, std::size_t inputColorBufferIndex, std::size_t outputColorBufferIndex);
|
||||
|
||||
DepthPipelinePass& operator=(const DepthPipelinePass&) = delete;
|
||||
DepthPipelinePass& operator=(DepthPipelinePass&&) = delete;
|
||||
DebugDrawPipelinePass& operator=(const DebugDrawPipelinePass&) = delete;
|
||||
DebugDrawPipelinePass& operator=(DebugDrawPipelinePass&&) = delete;
|
||||
|
||||
private:
|
||||
AbstractViewer* m_viewer;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ namespace Nz
|
|||
class NAZARA_WIDGETS_API ScrollbarButtonWidget : public BaseWidget
|
||||
{
|
||||
public:
|
||||
inline ScrollbarButtonWidget(BaseWidget* parent);
|
||||
ScrollbarButtonWidget(BaseWidget* parent);
|
||||
ScrollbarButtonWidget(const ScrollbarButtonWidget&) = delete;
|
||||
ScrollbarButtonWidget(ScrollbarButtonWidget&&) = default;
|
||||
~ScrollbarButtonWidget() = default;
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
|
||||
#include <Nazara/Graphics/DebugDrawPipelinePass.hpp>
|
||||
#include <Nazara/Graphics/AbstractViewer.hpp>
|
||||
#include <Nazara/Graphics/FrameGraph.hpp>
|
||||
#include <Nazara/Graphics/FramePipeline.hpp>
|
||||
#include <Nazara/Graphics/ViewerInstance.hpp>
|
||||
#include <Nazara/Renderer/DebugDrawer.hpp>
|
||||
#include <Nazara/Renderer/RenderFrame.hpp>
|
||||
#include <Nazara/Graphics/Debug.hpp>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue