Render basic geometry

Added GraphicsContext, SwapChain, Buffer, VertexBuffer, IndexBuffer and a basic DX11 implementation.
This commit is contained in:
Simon Lübeß
2020-11-25 13:03:40 +01:00
parent 0237e0b38d
commit 5954fbc411
20 changed files with 1219 additions and 180 deletions
+3 -2
View File
@@ -4,6 +4,7 @@ using GlitchyEngine.Events;
using System.Diagnostics;
using GlitchLog;
using GlitchyEngine.ImGui;
using ImGui;
namespace Sandbox
{
@@ -29,9 +30,9 @@ namespace Sandbox
private bool OnImGuiRender(ImGuiRenderEvent e)
{
ImGui.ImGui.Begin("Test");
ImGui.Begin("Test");
ImGui.ImGui.End();
ImGui.End();
return false;
}