Home
last modified time | relevance | path

Searched refs:windowHandle (Results 1 - 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Main/
H A DFrameBufferWin.cpp19 FrameBufferWin::FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) : FrameBuffer(width, height, fullscreen, topLeftOrigin), windowHandle(windowHandle) in FrameBufferWin() argument
24 originalWindowStyle = GetWindowLong(windowHandle, GWL_STYLE); in FrameBufferWin()
25 SetWindowLong(windowHandle, GWL_STYLE, WS_POPUP); in FrameBufferWin()
31 if(!windowed && GetWindowLong(windowHandle, GWL_STYLE) == WS_POPUP) in ~FrameBufferWin()
33 SetWindowLong(windowHandle, GWL_STYLE, originalWindowStyle); in ~FrameBufferWin()
39 HWND window = windowOverride ? windowOverride : windowHandle; in updateBounds()
58 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) in createFrameBufferWin() argument
65 return new sw::FrameBufferDD(windowHandle, widt in createFrameBufferWin()
[all...]
H A DFrameBufferGDI.cpp23 FrameBufferGDI::FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) : FrameBufferWin(windowHandle, width, height, fullscreen, topLeftOrigin) in FrameBufferGDI() argument
27 SetWindowPos(windowHandle, HWND_TOPMOST, 0, 0, width, height, SWP_SHOWWINDOW); in FrameBufferGDI()
38 init(this->windowHandle); in FrameBufferGDI()
53 GetClientRect(windowHandle, &clientRect); in ~FrameBufferGDI()
54 GetWindowRect(windowHandle, &windowRect); in ~FrameBufferGDI()
59 SetWindowPos(windowHandle, HWND_TOP, desktopWidth / 2 - windowWidth / 2, desktopHeight / 2 - windowHeight / 2, windowWidth, windowHeight, SWP_SHOWWINDOW); in ~FrameBufferGDI()
H A DFrameBufferDD.cpp35 FrameBufferDD::FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) : FrameBufferWin(windowHandle, width, height, fullscreen, topLeftOrigin) in FrameBufferDD() argument
129 clipper->SetHWnd(0, windowHandle); in createSurfaces()
168 HWND window = windowOverride ? windowOverride : windowHandle; in updateClipper()
203 directDraw->SetCooperativeLevel(windowHandle, DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN); in initFullscreen()
238 updateBounds(windowHandle); in initFullscreen()
246 directDraw->SetCooperativeLevel(windowHandle, DDSCL_NORMAL); in initWindowed()
250 updateBounds(windowHandle); in initWindowed()
H A DFrameBufferWin.hpp32 FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
51 HWND windowHandle; member in sw::FrameBufferWin
57 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
H A DFrameBufferGDI.hpp25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
H A DFrameBufferDD.hpp27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
/third_party/glfw/src/
H A Dinput.c943 GLFWAPI void glfwSetCursor(GLFWwindow* windowHandle, GLFWcursor* cursorHandle) in glfwSetCursor() argument
947 _GLFWwindow* window = (_GLFWwindow*) windowHandle; in glfwSetCursor()

Completed in 4 milliseconds