Update imgui library to latest.

This commit is contained in:
Mr_Goldberg 2021-05-16 21:04:18 -04:00
parent 0595490c00
commit 5495f36ed6
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
20 changed files with 8787 additions and 2829 deletions

View file

@ -1,16 +1,16 @@
// dear imgui: Renderer for DirectX9
// This needs to be used along with a Platform Binding (e.g. Win32)
// dear imgui: Renderer Backend for DirectX9
// This needs to be used along with a Platform Backend (e.g. Win32)
// Implemented features:
// [X] Renderer: User texture binding. Use 'LPDIRECT3DTEXTURE9' as ImTextureID. Read the FAQ about ImTextureID!
// [X] Renderer: Support for large meshes (64k+ vertices) with 16-bit indices.
// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this.
// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp.
// https://github.com/ocornut/imgui
// You can copy and use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
// Read online: https://github.com/ocornut/imgui/tree/master/docs
#pragma once
#include "../../imgui.h" // IMGUI_IMPL_API
#include "imgui.h" // IMGUI_IMPL_API
struct IDirect3DDevice9;