Home
last modified time | relevance | path

Searched refs:windowHandle (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/src/Main/
DFrameBufferWin.cpp19windowHandle, 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()
DFrameBufferGDI.cpp23 …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()
DFrameBufferDD.cpp35 …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()
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,…
DFrameBufferGDI.hpp25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
DFrameBufferDD.hpp27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);