fix warnings

This commit is contained in:
SweetId 2022-07-30 13:09:49 +02:00
parent 77c7cdff47
commit 31374d0f9d
1 changed files with 4 additions and 6 deletions

View File

@ -21,8 +21,8 @@
#include <map> #include <map>
#if __cplusplus >= 201103L // C++11 and above #if __cplusplus >= 201103L // C++11 and above
static_assert(sizeof(GLuint) <= sizeof(ImTextureID), static_assert(sizeof(void*) <= sizeof(ImTextureID),
"ImTextureID is not large enough to fit GLuint."); "ImTextureID is not large enough to fit void* ptr.");
#endif #endif
#ifdef NAZARAIMGUI_COMPILER_MSVC #ifdef NAZARAIMGUI_COMPILER_MSVC
@ -96,7 +96,7 @@ namespace Nz
Imgui* Imgui::s_instance = nullptr; Imgui* Imgui::s_instance = nullptr;
Imgui::Imgui(Config config) Imgui::Imgui(Config /*config*/)
: ModuleBase("Imgui", this) : ModuleBase("Imgui", this)
, m_bMouseMoved(false) , m_bMouseMoved(false)
, m_bWindowHasFocus(false) , m_bWindowHasFocus(false)
@ -202,7 +202,7 @@ namespace Nz
io.KeyMap[ImGuiKey_Z] = (int)Nz::Keyboard::Scancode::Z; io.KeyMap[ImGuiKey_Z] = (int)Nz::Keyboard::Scancode::Z;
// Setup event handler // Setup event handler
handler.OnMouseMoved.Connect([this](const Nz::EventHandler*, const Nz::WindowEvent::MouseMoveEvent& event) { handler.OnMouseMoved.Connect([this](const Nz::EventHandler*, const Nz::WindowEvent::MouseMoveEvent&) {
if (!m_bWindowHasFocus) if (!m_bWindowHasFocus)
return; return;
@ -557,8 +557,6 @@ namespace Nz
for (int n = 0; n < drawData->CmdListsCount; ++n) { for (int n = 0; n < drawData->CmdListsCount; ++n) {
const ImDrawList* cmd_list = drawData->CmdLists[n]; const ImDrawList* cmd_list = drawData->CmdLists[n];
const unsigned char* vtx_buffer =
(const unsigned char*)&cmd_list->VtxBuffer.front();
const ImDrawIdx* idx_buffer = &cmd_list->IdxBuffer.front(); const ImDrawIdx* idx_buffer = &cmd_list->IdxBuffer.front();
std::vector<Nz::VertexStruct_XYZ_Color_UV> vertices; std::vector<Nz::VertexStruct_XYZ_Color_UV> vertices;