Searched refs:clientRect (Results 1 – 12 of 12) sorted by relevance
/external/perfetto/ui/src/frontend/ |
D | drag_gesture_handler.ts | 19 private clientRect?: DOMRect; 44 this.clientRect = this.element.getBoundingClientRect(); 46 e.clientX - this.clientRect.left, e.clientY - this.clientRect.top); 61 e.clientX - this.clientRect!.left, e.clientY - this.clientRect!.top);
|
D | panel_container.ts | 288 const clientRect = assertExists(dom.parentElement).getBoundingClientRect(); constant 293 clientRect.width - globals.frontendLocalState.getScrollbarWidth(); 294 this.parentHeight = clientRect.height;
|
/external/swiftshader/src/WSI/ |
D | Win32SurfaceKHR.cpp | 27 RECT clientRect = {}; in getWindowSize() local 28 BOOL status = GetClientRect(hwnd, &clientRect); in getWindowSize() 31 int windowWidth = clientRect.right - clientRect.left; in getWindowSize() 32 int windowHeight = clientRect.bottom - clientRect.top; in getWindowSize()
|
/external/swiftshader/src/Main/ |
D | FrameBufferGDI.cpp | 51 RECT clientRect; in ~FrameBufferGDI() local 53 GetClientRect(windowHandle, &clientRect); in ~FrameBufferGDI() 55 …int windowWidth = width + (windowRect.right - windowRect.left) - (clientRect.right - clientRect.le… in ~FrameBufferGDI() 56 …indowHeight = height + (windowRect.bottom - windowRect.top) - (clientRect.bottom - clientRect.top); in ~FrameBufferGDI()
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/winrt/ |
D | InspectableNativeWindow.h | 84 mNewClientRect = clientRect(newWindowSize); in setNewClientSize() 106 virtual HRESULT scaleSwapChain(const Size &windowSize, const RECT &clientRect) = 0; 107 RECT clientRect(const Size &size);
|
D | SwapChainPanelNativeWindow.cpp | 184 mClientRect = clientRect(swapChainPanelSize); in initialize() 326 HRESULT SwapChainPanelNativeWindow::scaleSwapChain(const Size &windowSize, const RECT &clientRect) in scaleSwapChain() argument 328 Size renderScale = {windowSize.Width / (float)clientRect.right, in scaleSwapChain() 329 windowSize.Height / (float)clientRect.bottom}; in scaleSwapChain()
|
D | CoreWindowNativeWindow.cpp | 100 mClientRect = clientRect(coreWindowSize); in initialize() 194 const RECT &clientRect) in scaleSwapChain() argument
|
D | CoreWindowNativeWindow.h | 42 HRESULT scaleSwapChain(const Size &windowSize, const RECT &clientRect) override;
|
D | SwapChainPanelNativeWindow.h | 34 HRESULT scaleSwapChain(const Size &windowSize, const RECT &clientRect) override;
|
D | InspectableNativeWindow.cpp | 291 RECT InspectableNativeWindow::clientRect(const Size &size) in clientRect() function in rx::InspectableNativeWindow
|
/external/angle/util/windows/win32/ |
D | Win32Window.cpp | 790 RECT clientRect; in resize() local 791 if (!GetClientRect(mParentWindow, &clientRect)) in resize() 796 LONG diffX = (windowRect.right - windowRect.left) - clientRect.right; in resize() 797 LONG diffY = (windowRect.bottom - windowRect.top) - clientRect.bottom; in resize()
|
/external/angle/third_party/vulkan_memory_allocator/src/ |
D | VulkanSample.cpp | 1949 RECT clientRect; in HandlePossibleSizeChange() local 1950 GetClientRect(g_hWnd, &clientRect); in HandlePossibleSizeChange() 1951 LONG newSizeX = clientRect.right - clientRect.left; in HandlePossibleSizeChange() 1952 LONG newSizeY = clientRect.bottom - clientRect.top; in HandlePossibleSizeChange()
|