Fission FSN
Loading...
Searching...
No Matches
fsCBgfxWindow.h
Go to the documentation of this file.
1/********************************************************************
2*
3* File: fsCBgfxWindow.h
4*
5* Purpose: Shared access to the GLFW window owned by fsCDisplay.
6*
7* bgfx has no equivalent of raylib's implicit "current
8* context", so the display stores the window here for
9* the hardware / input implementations to pick up.
10*
11*********************************************************************/
12
13#ifndef fsCBgfxWindowhdr
14#define fsCBgfxWindowhdr
15
16struct GLFWwindow;
17
18namespace fsNBgfxWindow
19{
20 void windowSet(GLFWwindow* pWindow);
21 GLFWwindow* windowGet();
22}
23
24#endif
Definition fsCBgfxWindow.cpp:10
void windowSet(GLFWwindow *const pWindow)
Definition fsCBgfxWindow.cpp:11
GLFWwindow * windowGet()
Definition fsCBgfxWindow.cpp:16