Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Viewports rendering update for ImGui windows #31

Open
wants to merge 24 commits into
base: viewports
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
073ebd0
Fixed comments and properly dispose VAO, VBO, and EBO
NogginBops Mar 18, 2022
df03fae
Fix compile error
NogginBops Apr 14, 2022
2e40891
Fixed state saving and restoring
NogginBops Jun 17, 2022
5c6bf38
Merge branch 'opentk4.0' of github.com:NogginBops/ImGui.NET_OpenTK_Sa…
NogginBops Jun 17, 2022
6d5ff3a
Merge pull request #20 from NogginBops/opentk4.0-dev
NogginBops Jun 17, 2022
8a51d98
Fix GL InvalidEnum error
AntoineGagnon1 Jun 30, 2022
3dc998a
Invalid Enum error
AntoineGagnon1 Jun 30, 2022
088862a
Merge pull request #23 from AntoineGagnon1/patch-1
NogginBops Jun 30, 2022
80cb0ff
Fix bug where the previous texture binding wasn't restored properly
NogginBops Jul 7, 2022
4e2d120
Add support for mouse front/back
AntoineGagnon1 Jul 8, 2022
13eacc6
Fix PolygonMode not being saved.
NogginBops Jul 17, 2023
88ba3ce
Updated to .net 6 and removed unused dependency
NogginBops Jul 17, 2023
87519a1
Updated packages.
NogginBops Jul 17, 2023
a2fb5d7
Merge pull request #24 from AntoineGagnon1/patch-2
NogginBops Jul 17, 2023
65f833c
Updated input handling to fix ImGui.Net breaking changes.
NoahGWood Nov 21, 2023
710ee3a
Combined KeyTranslator.cs with ImGuiController.cs to ensure useable s…
NoahGWood Nov 21, 2023
986a801
Merge branch 'opentk4.0' of https://github.com/NoahGWood/ImGui.NET_Op…
NoahGWood Nov 23, 2023
e8abce1
Delete Dear ImGui Sample/KeyTranslator.cs
NoahGWood Nov 23, 2023
1b7aea7
Simplified key translation code
NogginBops Dec 13, 2023
cfacd12
Merge pull request #29 from NoahGWood/opentk4.0
NogginBops Dec 13, 2023
5d62fc7
Fixed compilation issue
NogginBops Dec 13, 2023
c1d7616
vieport rendering and interaction
darkvoid305 Apr 27, 2024
0def0e4
Merge branch 'viewports' into viewports
darkvoid305 Apr 27, 2024
604d531
Cleanup
NogginBops Apr 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Dear ImGui Sample/Dear ImGui Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>Dear_ImGui_Sample.Program</StartupObject>
</PropertyGroup>

Expand All @@ -15,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.87.3" />
<PackageReference Include="OpenTK" Version="4.7.1" />
<PackageReference Include="ImGui.NET" Version="1.90.1.1" />
<PackageReference Include="OpenTK" Version="4.8.2" />
</ItemGroup>
</Project>
Loading