2021-01-19 15:30:00 +01:00
|
|
|
#include "InspectorView.h"
|
2021-09-23 10:10:39 +02:00
|
|
|
#include "Window.h"
|
|
|
|
|
|
2021-01-19 15:30:00 +01:00
|
|
|
using namespace Seele;
|
|
|
|
|
|
|
|
|
|
InspectorView::InspectorView(Gfx::PGraphics graphics, PWindow window, const ViewportCreateInfo &createInfo)
|
2021-11-13 19:28:18 +01:00
|
|
|
: View(graphics, window, createInfo, "InspectorView")
|
2021-10-15 23:12:29 +02:00
|
|
|
, uiPass(UIPass(graphics, viewport, new Gfx::SwapchainAttachment(window->getGfxHandle())))
|
2021-01-19 15:30:00 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
InspectorView::~InspectorView()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-15 23:12:29 +02:00
|
|
|
void InspectorView::beginUpdate()
|
2021-01-19 15:30:00 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-01 19:55:04 +02:00
|
|
|
void InspectorView::update()
|
2021-01-19 15:30:00 +01:00
|
|
|
{
|
2021-10-01 19:55:04 +02:00
|
|
|
|
2021-01-19 15:30:00 +01:00
|
|
|
}
|
|
|
|
|
|
2021-10-15 23:12:29 +02:00
|
|
|
void InspectorView::commitUpdate()
|
2021-09-23 10:10:39 +02:00
|
|
|
{
|
2021-10-01 19:55:04 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::prepareRender()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::render()
|
|
|
|
|
{
|
2021-09-23 10:10:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::keyCallback(KeyCode code, InputAction action, KeyModifier modifier)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::mouseMoveCallback(double xPos, double yPos)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::mouseButtonCallback(MouseButton button, InputAction action, KeyModifier modifier)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::scrollCallback(double xOffset, double yOffset)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InspectorView::fileCallback(int count, const char** paths)
|
2021-01-19 15:30:00 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|