Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2,147 changes: 1,542 additions & 605 deletions thirdparty/imgui_suite/glfw/src/mappings.h

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions thirdparty/imgui_suite/glfw/src/mappings.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@
//
// 3. This notice may not be removed or altered from any source distribution.

#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
#endif

const char* _glfwDefaultMappings[] =
{
#if defined(GLFW_BUILD_WIN32_MAPPINGS)
Expand All @@ -80,3 +85,6 @@ const char* _glfwDefaultMappings[] =
#endif // GLFW_BUILD_LINUX_MAPPINGS
};

#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: PJ Reiniger <pj.reiniger@gmail.com>
Date: Wed, 10 Jul 2024 03:16:58 -0400
Subject: [PATCH 1/2] Suppress Compiler Warnings
Subject: [PATCH 1/4] Suppress Compiler Warnings

---
src/input.c | 4 ++++
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Tyler Veness <calcmogul@gmail.com>
Date: Sat, 20 Jul 2024 23:18:56 -0700
Subject: [PATCH 2/2] Disable docs build by default
Subject: [PATCH 2/4] Disable docs build by default

---
CMakeLists.txt | 2 +-
Expand Down
Loading
Loading