You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
defender-control/src/defender-control/gui_dx11.hpp

21 lines
295 B
C++

#pragma once
#include <Windows.h>
#include <d3d11.h>
#pragma comment (lib, "d3d11.lib")
#include <tchar.h>
#include <imgui.h>
namespace gui::dx11
{
bool create_device(HWND hwnd);
void cleanup();
void setup(HWND hwnd);
void start();
void end();
// resize here:
void resize();
}