Searched refs:windowHandle (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
D | FrameBufferWin.cpp | 19 …windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) : FrameBuffer(width, hei… 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,… in createFrameBufferWin() argument 65 return new sw::FrameBufferDD(windowHandle, width, height, fullscreen, topLeftOrigin); in createFrameBufferWin() 69 return new sw::FrameBufferGDI(windowHandle, width, height, fullscreen, topLeftOrigin); in createFrameBufferWin()
|
D | FrameBufferGDI.cpp | 23 …GDI::FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool 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 - windo… in ~FrameBufferGDI()
|
D | FrameBufferDD.cpp | 35 …erDD::FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool 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()
|
D | FrameBufferWin.hpp | 32 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,…
|
D | FrameBufferGDI.hpp | 25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
|
D | FrameBufferDD.hpp | 27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
|
/third_party/flutter/glfw/src/ |
D | input.c | 446 GLFWAPI void glfwSetCursor(GLFWwindow* windowHandle, GLFWcursor* cursorHandle) in glfwSetCursor() argument 448 _GLFWwindow* window = (_GLFWwindow*) windowHandle; in glfwSetCursor()
|