glfw window icon
This commit is contained in:
parent
02ac7c309e
commit
8d27dba4cd
@ -52,6 +52,11 @@ long _dwOperatingSystemVersion;
|
|||||||
|
|
||||||
#define MAX_SUBSYSTEMS (16)
|
#define MAX_SUBSYSTEMS (16)
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define GLFW_EXPOSE_NATIVE_WIN32
|
||||||
|
#include <GLFW/glfw3native.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
rw::EngineOpenParams openParams;
|
rw::EngineOpenParams openParams;
|
||||||
|
|
||||||
@ -1560,6 +1565,15 @@ main(int argc, char *argv[])
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
HWND wnd = glfwGetWin32Window(PSGLOBAL(window));
|
||||||
|
|
||||||
|
HICON icon = LoadIcon(instance, MAKEINTRESOURCE(IDI_MAIN_ICON));
|
||||||
|
|
||||||
|
SendMessage(wnd, WM_SETICON, ICON_BIG, (LPARAM)icon);
|
||||||
|
SendMessage(wnd, WM_SETICON, ICON_SMALL, (LPARAM)icon);
|
||||||
|
#endif
|
||||||
|
|
||||||
psPostRWinit();
|
psPostRWinit();
|
||||||
|
|
||||||
ControlsManager.InitDefaultControlConfigMouse(MousePointerStateHelper.GetMouseSetUp());
|
ControlsManager.InitDefaultControlConfigMouse(MousePointerStateHelper.GetMouseSetUp());
|
||||||
|
Loading…
Reference in New Issue
Block a user