mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-05 04:28:47 +02:00
Examples: Tweaks.
This commit is contained in:
@ -176,7 +176,7 @@ void ImGui_ImplDX9_InitFontsTexture()
|
||||
g_FontTextureLoaded = true;
|
||||
}
|
||||
|
||||
bool ImGui_ImplDX9_Init(void* hwnd, IDirect3DDevice9* device, bool install_callbacks)
|
||||
bool ImGui_ImplDX9_Init(void* hwnd, IDirect3DDevice9* device)
|
||||
{
|
||||
g_pd3dDevice = device;
|
||||
if (!QueryPerformanceFrequency((LARGE_INTEGER *)&g_TicksPerSecond))
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
struct IDirect3DDevice9;
|
||||
|
||||
bool ImGui_ImplDX9_Init(void* hwnd, IDirect3DDevice9* device, bool install_callbacks);
|
||||
bool ImGui_ImplDX9_Init(void* hwnd, IDirect3DDevice9* device);
|
||||
void ImGui_ImplDX9_InitFontsTexture();
|
||||
void ImGui_ImplDX9_Shutdown();
|
||||
void ImGui_ImplDX9_NewFrame();
|
||||
|
@ -61,7 +61,7 @@ int main(int argc, char** argv)
|
||||
UpdateWindow(hwnd);
|
||||
|
||||
// ImGui
|
||||
ImGui_ImplDX9_Init(hwnd, pd3dDevice, true);
|
||||
ImGui_ImplDX9_Init(hwnd, pd3dDevice);
|
||||
//ImGuiIO& io = ImGui::GetIO();
|
||||
//ImFont* my_font1 = io.Fonts->AddFontDefault();
|
||||
//ImFont* my_font2 = io.Fonts->AddFontFromFileTTF("extra_fonts/Karla-Regular.ttf", 15.0f);
|
||||
|
Reference in New Issue
Block a user