mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-21 20:08:40 +03:00
Quake maps geometry batching
Rendering Optimization
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
#include "src/Scene/Components/WrenScriptComponent.h"
|
||||
#include "src/Scene/Systems/QuakeMapBuilder.h"
|
||||
#include "src/Scene/Components/LightComponent.h"
|
||||
#include "UIComponents/Viewport.h"
|
||||
|
||||
namespace Nuake {
|
||||
Ref<UI::UserInterface> userInterface;
|
||||
@@ -53,7 +54,6 @@ namespace Nuake {
|
||||
void EditorInterface::DrawViewport()
|
||||
{
|
||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
|
||||
|
||||
std::string name = ICON_FA_GAMEPAD + std::string(" Scene");
|
||||
if (ImGui::Begin(name.c_str()))
|
||||
{
|
||||
@@ -125,7 +125,6 @@ namespace Nuake {
|
||||
ImGui::PopStyleVar();
|
||||
}
|
||||
ImGui::End();
|
||||
|
||||
}
|
||||
|
||||
static int selected = 0;
|
||||
|
||||
21
Editor/src/UIComponents/Viewport.cpp
Normal file
21
Editor/src/UIComponents/Viewport.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "Viewport.h"
|
||||
#include <src/Vendors/imgui/imgui.h>
|
||||
|
||||
Viewport::Viewport(const std::string& name, Ref<Nuake::Texture> texture)
|
||||
{
|
||||
Name = name;
|
||||
Texture = texture;
|
||||
}
|
||||
|
||||
void Viewport::Draw()
|
||||
{
|
||||
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
|
||||
|
||||
if (ImGui::Begin(Name.c_str()))
|
||||
{
|
||||
ImGui::Image((void*)Texture->GetID(), ImGui::GetContentRegionAvail(), ImVec2(0, 1), ImVec2(1, 0));
|
||||
}
|
||||
ImGui::PopStyleVar();
|
||||
|
||||
ImGui::End();
|
||||
}
|
||||
13
Editor/src/UIComponents/Viewport.h
Normal file
13
Editor/src/UIComponents/Viewport.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include "Engine.h"
|
||||
#include "src/Rendering/Textures/Texture.h"
|
||||
|
||||
class Viewport
|
||||
{
|
||||
public:
|
||||
std::string Name = "";
|
||||
Ref<Nuake::Texture> Texture;
|
||||
|
||||
Viewport(const std::string& name, Ref<Nuake::Texture> texture);
|
||||
void Draw();
|
||||
};
|
||||
Reference in New Issue
Block a user